@zohodesk/testinglibrary 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +1 -1
- package/build/bdd-framework/cli/commands/env.js +1 -2
- package/build/bdd-framework/cli/commands/export.js +1 -2
- package/build/bdd-framework/cli/commands/test.js +1 -2
- package/build/bdd-framework/cli/options.js +1 -2
- package/build/bdd-framework/config/index.js +1 -2
- package/build/bdd-framework/decorators.js +4 -8
- package/build/bdd-framework/playwright/utils.js +1 -4
- package/build/bdd-framework/run/bddFixtures.js +1 -2
- package/build/bdd-framework/snippets/index.js +0 -1
- package/build/bdd-framework/stepDefinitions/createDecorators.js +0 -1
- package/build/bdd-framework/stepDefinitions/decorators/steps.js +0 -1
- package/build/bdd-framework/utils/logger.js +1 -2
- package/build/core/jest/preprocessor/jsPreprocessor.js +2 -3
- package/build/core/playwright/clear-caches.js +29 -0
- package/build/core/playwright/custom-commands.js +1 -2
- package/build/core/playwright/index.js +1 -3
- package/build/core/playwright/readConfigFile.js +1 -2
- package/build/core/playwright/setup/config-creator.js +2 -3
- package/build/core/playwright/setup/custom-reporter.js +100 -0
- package/build/core/playwright/test-runner.js +3 -5
- package/build/index.d.ts +58 -3
- package/build/index.js +4 -2
- package/build/lib/cli.js +10 -1
- package/build/parser/parser.js +0 -1
- package/build/setup-folder-structure/helper.js +34 -0
- package/build/setup-folder-structure/samples/git-ignore.sample.js +8 -4
- package/build/setup-folder-structure/setupProject.js +10 -5
- package/build/utils/fileUtils.js +12 -0
- package/build/utils/logger.js +1 -2
- package/build/utils/stepDefinitionsFormatter.js +1 -2
- package/changelog.md +22 -0
- package/npm-shrinkwrap.json +968 -2280
- package/package.json +6 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zohodesk/testinglibrary",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./build/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -22,13 +22,13 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@babel/preset-react": "7.22.5",
|
|
24
24
|
"@cucumber/cucumber": "9.2.0",
|
|
25
|
-
"@playwright/test": "1.
|
|
25
|
+
"@playwright/test": "1.40.1",
|
|
26
|
+
"playwright": "1.40.1",
|
|
26
27
|
"@testing-library/jest-dom": "5.11.9",
|
|
27
28
|
"@testing-library/react": "11.2.7",
|
|
28
29
|
"@testing-library/react-hooks": "7.0.2",
|
|
29
30
|
"babel-jest": "29.6.2",
|
|
30
31
|
"babel-plugin-transform-dynamic-import": "2.1.0",
|
|
31
|
-
"commander": "11.0.0",
|
|
32
32
|
"fast-glob": "3.3.1",
|
|
33
33
|
"jest": "29.6.2",
|
|
34
34
|
"jest-environment-jsdom": "29.6.2",
|
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
"@babel/plugin-transform-runtime": "7.22.15",
|
|
50
50
|
"@babel/polyfill": "7.12.1",
|
|
51
51
|
"@babel/preset-env": "7.22.15",
|
|
52
|
-
"@babel/runtime": "7.22.15"
|
|
52
|
+
"@babel/runtime": "7.22.15",
|
|
53
|
+
"commander": "^11.0.0"
|
|
53
54
|
}
|
|
54
|
-
}
|
|
55
|
+
}
|