@zohodesk/testinglibrary 0.4.7-experimental → 0.4.8-experimental
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/.gitlab-ci.yml +35 -20
- package/README.md +6 -1
- package/build/core/playwright/builtInFixtures/page.js +7 -0
- package/build/core/playwright/helpers/auth/getUsers.js +12 -25
- package/build/core/playwright/runner/Runner.js +22 -0
- package/build/core/playwright/runner/RunnerHelper.js +43 -0
- package/build/core/playwright/runner/RunnerTypes.js +17 -0
- package/build/core/playwright/runner/SpawnRunner.js +110 -0
- package/build/core/playwright/test-runner.js +8 -34
- package/build/setup-folder-structure/samples/actors-index.js +0 -1
- package/build/setup-folder-structure/samples/settings.json +1 -1
- package/build/test/Test.js +11 -0
- package/build/test/core/playwright/helpers/__tests__/getUsers_ListOfActors.test.js +80 -0
- package/build/test/core/playwright/runner/__tests__/RunnerHelper.test.js +16 -0
- package/build/test/core/playwright/runner/__tests__/SpawnRunner.test.js +27 -0
- package/nobdd/src/App.js +7 -0
- package/nobdd/uat/conf/default/actors/index.js +1 -4
- package/nobdd/uat/conf/default/settings.json +1 -1
- package/nobdd/uat/conf/nobdd/uat.config.js +3 -2
- package/nobdd/uat/env-config.json +3 -3
- package/nobdd/uat/fixtures/setup.teardown.js +2 -1
- package/nobdd/uat/modules/nobdd/steps/VerifyNoBDD.feature.spec.js +3 -3
- package/nobdd/uat/playwright/.auth/anitha.m+clientat@zohotest.com-cookies.json +276 -0
- package/nobdd/uat/playwright/.auth/anitha.m+clientattest@zohotest.com-cookies.json +3 -0
- package/nobdd/uat/playwright/.auth/anitha.m+uat@zohotest.com-cookies.json +3 -0
- package/nobdd/uat/playwright/.auth/skumaresan@zohotest.com-cookies.json +503 -0
- package/nobdd/uat/playwright/.auth/solairaj.m+26jun2023@zohotest.com-cookies.json +173 -0
- package/nobdd/uat/playwright/.auth/sridhar.parthasarathy@zohotest.com-cookies.json +520 -0
- package/nobdd/uat/playwright-report/data/15676399fddfec429bc2935c407212f42cfa65b2.webm +0 -0
- package/nobdd/uat/playwright-report/data/7be7af3de16a483f32cdcb86b3a290f584e21f76.zip +0 -0
- package/nobdd/uat/playwright-report/index.html +68 -0
- package/nobdd/uat/playwright-report/test-summary.json +17 -0
- package/nobdd/uat/playwright-report/trace/assets/codeMirrorModule-BK3t1EEu.js +24 -0
- package/nobdd/uat/playwright-report/trace/assets/wsPort-964mA9MZ.js +69 -0
- package/nobdd/uat/playwright-report/trace/codeMirrorModule.Hs9-1ZG4.css +1 -0
- package/nobdd/uat/playwright-report/trace/codicon.zGuYmc9o.ttf +0 -0
- package/nobdd/uat/playwright-report/trace/index.-g_5lMbJ.css +1 -0
- package/nobdd/uat/playwright-report/trace/index.cbtHmFgM.js +2 -0
- package/nobdd/uat/playwright-report/trace/index.html +26 -0
- package/nobdd/uat/playwright-report/trace/playwright-logo.svg +9 -0
- package/nobdd/uat/playwright-report/trace/snapshot.html +21 -0
- package/nobdd/uat/playwright-report/trace/sw.bundle.js +4 -0
- package/nobdd/uat/playwright-report/trace/uiMode.fcU_T5Nf.js +10 -0
- package/nobdd/uat/playwright-report/trace/uiMode.html +17 -0
- package/nobdd/uat/playwright-report/trace/uiMode.pWy0Re7G.css +1 -0
- package/nobdd/uat/playwright-report/trace/wsPort.zR1WIy9-.css +1 -0
- package/nobdd/uat/playwright-report/trace/xtermModule.0lwXJFHT.css +32 -0
- package/nobdd/uat/test-results/modules-nobdd-steps-ExamplesForTestData.featur-a74c6-required-nobdd-Verify-the-page-is-not-logged-in-chromium/trace.zip +0 -0
- package/nobdd/uat/test-results/modules-nobdd-steps-ExamplesForTestData.featur-a74c6-required-nobdd-Verify-the-page-is-not-logged-in-chromium/video.webm +0 -0
- package/nobdd/uat.config.js +3 -2
- package/package.json +1 -1
- package/nobdd/uat/conf/default/actors/beta/custom-module.json +0 -24
- package/nobdd/uat/conf/default/actors/beta/index.js +0 -6
- package/nobdd/uat/conf/default/actors/beta/parent-child.json +0 -24
- package/npm-shrinkwrap.json +0 -10125
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"durationInMS": 16073,
|
|
3
|
+
"passed": [
|
|
4
|
+
"modules/nobdd/steps/ExamplesForTestData.feature.spec.js"
|
|
5
|
+
],
|
|
6
|
+
"skipped": [],
|
|
7
|
+
"failed": [],
|
|
8
|
+
"warned": [],
|
|
9
|
+
"errored": [],
|
|
10
|
+
"interrupted": [],
|
|
11
|
+
"timedOut": [],
|
|
12
|
+
"flakey": [],
|
|
13
|
+
"failedSteps": [],
|
|
14
|
+
"status": "passed",
|
|
15
|
+
"startedAt": 1730141642383,
|
|
16
|
+
"_open": "never"
|
|
17
|
+
}
|