[MIGRATION] - Are we able to run a test? let's see

This commit is contained in:
VitoAlbano
2024-08-07 11:29:10 +01:00
parent 8508dfe24e
commit 809808d23a
3 changed files with 13 additions and 1 deletions

View File

@@ -3,6 +3,7 @@
"description": "Alfresco ADF testing page and utils", "description": "Alfresco ADF testing page and utils",
"version": "6.9.0", "version": "6.9.0",
"author": "Hyland Software, Inc. and its affiliates", "author": "Hyland Software, Inc. and its affiliates",
"type": "commonjs",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/Alfresco/alfresco-ng2-components.git" "url": "https://github.com/Alfresco/alfresco-ng2-components.git"

10
package-lock.json generated
View File

@@ -115,6 +115,7 @@
"eslint-plugin-rxjs": "^5.0.3", "eslint-plugin-rxjs": "^5.0.3",
"eslint-plugin-storybook": "^0.8.0", "eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-unicorn": "^49.0.0", "eslint-plugin-unicorn": "^49.0.0",
"esm": "^3.2.25",
"graphql": "^16.8.1", "graphql": "^16.8.1",
"husky": "^7.0.4", "husky": "^7.0.4",
"jasmine-ajax": "4.0.0", "jasmine-ajax": "4.0.0",
@@ -19907,6 +19908,15 @@
"url": "https://github.com/sponsors/sindresorhus" "url": "https://github.com/sponsors/sindresorhus"
} }
}, },
"node_modules/esm": {
"version": "3.2.25",
"resolved": "https://registry.npmjs.org/esm/-/esm-3.2.25.tgz",
"integrity": "sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==",
"dev": true,
"engines": {
"node": ">=6"
}
},
"node_modules/esniff": { "node_modules/esniff": {
"version": "2.0.1", "version": "2.0.1",
"resolved": "https://registry.npmjs.org/esniff/-/esniff-2.0.1.tgz", "resolved": "https://registry.npmjs.org/esniff/-/esniff-2.0.1.tgz",

View File

@@ -25,7 +25,7 @@
"e2e": "./scripts/test-e2e-lib.sh -host 'localhost:4200' -dev --folder demo-shell", "e2e": "./scripts/test-e2e-lib.sh -host 'localhost:4200' -dev --folder demo-shell",
"e2e-lib": "nx e2e lib-e2e-test --port=4200", "e2e-lib": "nx e2e lib-e2e-test --port=4200",
"lite-server-e2e": "lite-server --baseDir='dist/demo-shell/' -c ./e2e/lite-server-proxy.js", "lite-server-e2e": "lite-server --baseDir='dist/demo-shell/' -c ./e2e/lite-server-proxy.js",
"postbuild:ci": "node ./scripts/app-config-replace.js", "postbuild:ci": "node -r esm ./scripts/app-config-replace.js",
"06": "echo -------------------------------------------- Clean ----------------------------------------------", "06": "echo -------------------------------------------- Clean ----------------------------------------------",
"clean": "rimraf dist node_modules dist/libs", "clean": "rimraf dist node_modules dist/libs",
"playwright": "npx playwright test --config='e2e-playwright/playwright.config.ts'", "playwright": "npx playwright test --config='e2e-playwright/playwright.config.ts'",
@@ -156,6 +156,7 @@
"eslint-plugin-rxjs": "^5.0.3", "eslint-plugin-rxjs": "^5.0.3",
"eslint-plugin-storybook": "^0.8.0", "eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-unicorn": "^49.0.0", "eslint-plugin-unicorn": "^49.0.0",
"esm": "^3.2.25",
"graphql": "^16.8.1", "graphql": "^16.8.1",
"husky": "^7.0.4", "husky": "^7.0.4",
"jasmine-ajax": "4.0.0", "jasmine-ajax": "4.0.0",