@zohodesk/testinglibrary 0.4.45-experimental → 0.4.46-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.
Files changed (31) hide show
  1. package/.gitlab-ci.yml +12 -20
  2. package/build/core/playwright/builtInFixtures/page.js +46 -64
  3. package/build/core/playwright/constants/fileMutexConfig.js +3 -3
  4. package/build/core/playwright/custom-commands.js +1 -1
  5. package/build/core/playwright/helpers/auth/loginSteps.js +14 -17
  6. package/build/core/playwright/helpers/fileMutex.js +2 -2
  7. package/build/core/playwright/tagProcessor.js +7 -5
  8. package/build/core/playwright/test-runner.js +1 -1
  9. package/build/test/core/playwright/__tests__/tagProcessor.test.js +19 -18
  10. package/package.json +4 -4
  11. package/unit_reports/unit-report.html +260 -0
  12. package/nobdd/README.md +0 -1
  13. package/nobdd/package.json +0 -17
  14. package/nobdd/src/App.js +0 -7
  15. package/nobdd/uat/conf/default/actors/editions/enterprise.json +0 -24
  16. package/nobdd/uat/conf/default/actors/editions/index.js +0 -4
  17. package/nobdd/uat/conf/default/actors/index.js +0 -2
  18. package/nobdd/uat/conf/default/settings.json +0 -6
  19. package/nobdd/uat/conf/nobdd/uat.config.js +0 -36
  20. package/nobdd/uat/env-config.json +0 -20
  21. package/nobdd/uat/fixtures/auth.setup.js +0 -44
  22. package/nobdd/uat/fixtures/setup.teardown.js +0 -33
  23. package/nobdd/uat/modules/nobdd/steps/VerifyNoBDD.feature.spec.js +0 -16
  24. package/nobdd/uat/shared/commands/_index-custom-fixtures.js +0 -9
  25. package/nobdd/uat/shared/commands/i18n.js +0 -25
  26. package/nobdd/uat/shared/commands/unauthenticatedPage.js +0 -8
  27. package/nobdd/uat/shared/index.js +0 -7
  28. package/nobdd/uat/shared/onboardings/onboardingUpdate.js +0 -44
  29. package/nobdd/uat/shared/url-helpers/getUrlOrigin.js +0 -6
  30. package/nobdd/uat.config.js +0 -37
  31. package/npm-shrinkwrap.json +0 -6524
@@ -0,0 +1,260 @@
1
+ <html><head><meta charset="utf-8"/><title>Unit Report</title><style type="text/css">html,
2
+ body {
3
+ font-family: Arial, Helvetica, sans-serif;
4
+ font-size: 1rem;
5
+ margin: 0;
6
+ padding: 0;
7
+ color: #333;
8
+ }
9
+ body {
10
+ padding: 2rem 1rem;
11
+ font-size: 0.85rem;
12
+ }
13
+ .jesthtml-content {
14
+ margin: 0 auto;
15
+ max-width: 70rem;
16
+ }
17
+ header {
18
+ display: flex;
19
+ align-items: center;
20
+ }
21
+ #title {
22
+ margin: 0;
23
+ flex-grow: 1;
24
+ }
25
+ #logo {
26
+ height: 4rem;
27
+ }
28
+ #timestamp {
29
+ color: #777;
30
+ margin-top: 0.5rem;
31
+ }
32
+
33
+ /** SUMMARY */
34
+ #summary {
35
+ color: #333;
36
+ margin: 2rem 0;
37
+ display: flex;
38
+ font-family: monospace;
39
+ font-size: 1rem;
40
+ }
41
+ #summary > div {
42
+ margin-right: 2rem;
43
+ background: #eee;
44
+ padding: 1rem;
45
+ min-width: 15rem;
46
+ }
47
+ #summary > div:last-child {
48
+ margin-right: 0;
49
+ }
50
+ @media only screen and (max-width: 720px) {
51
+ #summary {
52
+ flex-direction: column;
53
+ }
54
+ #summary > div {
55
+ margin-right: 0;
56
+ margin-top: 2rem;
57
+ }
58
+ #summary > div:first-child {
59
+ margin-top: 0;
60
+ }
61
+ }
62
+
63
+ .summary-total {
64
+ font-weight: bold;
65
+ margin-bottom: 0.5rem;
66
+ }
67
+ .summary-passed {
68
+ color: #4f8a10;
69
+ border-left: 0.4rem solid #4f8a10;
70
+ padding-left: 0.5rem;
71
+ }
72
+ .summary-failed,
73
+ .summary-obsolete-snapshots {
74
+ color: #d8000c;
75
+ border-left: 0.4rem solid #d8000c;
76
+ padding-left: 0.5rem;
77
+ }
78
+ .summary-pending {
79
+ color: #9f6000;
80
+ border-left: 0.4rem solid #9f6000;
81
+ padding-left: 0.5rem;
82
+ }
83
+ .summary-empty {
84
+ color: #999;
85
+ border-left: 0.4rem solid #999;
86
+ }
87
+
88
+ .test-result {
89
+ padding: 1rem;
90
+ margin-bottom: 0.25rem;
91
+ }
92
+ .test-result:last-child {
93
+ border: 0;
94
+ }
95
+ .test-result.passed {
96
+ background-color: #dff2bf;
97
+ color: #4f8a10;
98
+ }
99
+ .test-result.failed {
100
+ background-color: #ffbaba;
101
+ color: #d8000c;
102
+ }
103
+ .test-result.pending {
104
+ background-color: #ffdf61;
105
+ color: #9f6000;
106
+ }
107
+
108
+ .test-info {
109
+ display: flex;
110
+ justify-content: space-between;
111
+ }
112
+ .test-suitename {
113
+ width: 20%;
114
+ text-align: left;
115
+ font-weight: bold;
116
+ word-break: break-word;
117
+ }
118
+ .test-title {
119
+ width: 40%;
120
+ text-align: left;
121
+ font-style: italic;
122
+ }
123
+ .test-status {
124
+ width: 20%;
125
+ text-align: right;
126
+ }
127
+ .test-duration {
128
+ width: 10%;
129
+ text-align: right;
130
+ font-size: 0.75rem;
131
+ }
132
+
133
+ .failureMessages {
134
+ padding: 0 1rem;
135
+ margin-top: 1rem;
136
+ border-top: 1px dashed #d8000c;
137
+ }
138
+ .failureMessages.suiteFailure {
139
+ border-top: none;
140
+ }
141
+ .failureMsg {
142
+ white-space: pre-wrap;
143
+ white-space: -moz-pre-wrap;
144
+ white-space: -pre-wrap;
145
+ white-space: -o-pre-wrap;
146
+ word-wrap: break-word;
147
+ }
148
+
149
+ .suite-container {
150
+ margin-bottom: 2rem;
151
+ }
152
+ .suite-container > input[type="checkbox"] {
153
+ position: absolute;
154
+ left: -100vw;
155
+ }
156
+ .suite-container label {
157
+ display: block;
158
+ }
159
+ .suite-container .suite-tests {
160
+ overflow-y: hidden;
161
+ height: 0;
162
+ }
163
+ .suite-container > input[type="checkbox"]:checked ~ .suite-tests {
164
+ height: auto;
165
+ overflow: visible;
166
+ }
167
+ .suite-info {
168
+ padding: 1rem;
169
+ background-color: #eee;
170
+ color: #777;
171
+ display: flex;
172
+ align-items: center;
173
+ margin-bottom: 0.25rem;
174
+ }
175
+ .suite-info:hover {
176
+ background-color: #ddd;
177
+ cursor: pointer;
178
+ }
179
+ .suite-info .suite-path {
180
+ word-break: break-all;
181
+ flex-grow: 1;
182
+ font-family: monospace;
183
+ font-size: 1rem;
184
+ }
185
+ .suite-info .suite-time {
186
+ margin-left: 0.5rem;
187
+ padding: 0.2rem 0.3rem;
188
+ font-size: 0.75rem;
189
+ }
190
+ .suite-info .suite-time.warn {
191
+ background-color: #d8000c;
192
+ color: #fff;
193
+ }
194
+ .suite-info:before {
195
+ content: "\2303";
196
+ display: inline-block;
197
+ margin-right: 0.5rem;
198
+ transform: rotate(0deg);
199
+ }
200
+ .suite-container > input[type="checkbox"]:checked ~ label .suite-info:before {
201
+ transform: rotate(180deg);
202
+ }
203
+
204
+ /* CONSOLE LOGS */
205
+ .suite-consolelog {
206
+ margin-bottom: 0.25rem;
207
+ padding: 1rem;
208
+ background-color: #efefef;
209
+ }
210
+ .suite-consolelog-header {
211
+ font-weight: bold;
212
+ }
213
+ .suite-consolelog-item {
214
+ padding: 0.5rem;
215
+ }
216
+ .suite-consolelog-item pre {
217
+ margin: 0.5rem 0;
218
+ white-space: pre-wrap;
219
+ white-space: -moz-pre-wrap;
220
+ white-space: -pre-wrap;
221
+ white-space: -o-pre-wrap;
222
+ word-wrap: break-word;
223
+ }
224
+ .suite-consolelog-item-origin {
225
+ color: #777;
226
+ font-weight: bold;
227
+ }
228
+ .suite-consolelog-item-message {
229
+ color: #000;
230
+ font-size: 1rem;
231
+ padding: 0 0.5rem;
232
+ }
233
+
234
+ /* OBSOLETE SNAPSHOTS */
235
+ .suite-obsolete-snapshots {
236
+ margin-bottom: 0.25rem;
237
+ padding: 1rem;
238
+ background-color: #ffbaba;
239
+ color: #d8000c;
240
+ }
241
+ .suite-obsolete-snapshots-header {
242
+ font-weight: bold;
243
+ }
244
+ .suite-obsolete-snapshots-item {
245
+ padding: 0.5rem;
246
+ }
247
+ .suite-obsolete-snapshots-item pre {
248
+ margin: 0.5rem 0;
249
+ white-space: pre-wrap;
250
+ white-space: -moz-pre-wrap;
251
+ white-space: -pre-wrap;
252
+ white-space: -o-pre-wrap;
253
+ word-wrap: break-word;
254
+ }
255
+ .suite-obsolete-snapshots-item-message {
256
+ color: #000;
257
+ font-size: 1rem;
258
+ padding: 0 0.5rem;
259
+ }
260
+ </style></head><body><div class="jesthtml-content"><header><h1 id="title">Unit Report</h1></header><div id="metadata-container"><div id="timestamp">Started: 2024-12-18 15:33:53</div><div id="summary"><div id="suite-summary"><div class="summary-total">Suites (1)</div><div class="summary-passed ">1 passed</div><div class="summary-failed summary-empty">0 failed</div><div class="summary-pending summary-empty">0 pending</div></div><div id="test-summary"><div class="summary-total">Tests (9)</div><div class="summary-passed ">9 passed</div><div class="summary-failed summary-empty">0 failed</div><div class="summary-pending summary-empty">0 pending</div></div></div></div><div id="suite-1" class="suite-container"><input id="collapsible-0" type="checkbox" class="toggle" checked="checked"/><label for="collapsible-0"><div class="suite-info"><div class="suite-path">/Users/durai-19814/Documents/Git/testing-framework/src/test/core/playwright/__tests__/tagProcessor.test.js</div><div class="suite-time">1.168s</div></div></label><div class="suite-tests"><div class="test-result passed"><div class="test-info"><div class="test-suitename">TagProcessor</div><div class="test-title">should return tagArgs if no edition is provided</div><div class="test-status">passed</div><div class="test-duration">0.002s</div></div></div><div class="test-result passed"><div class="test-info"><div class="test-suitename">TagProcessor</div><div class="test-title">should handle a single edition with &lt;= operator</div><div class="test-status">passed</div><div class="test-duration">0s</div></div></div><div class="test-result passed"><div class="test-info"><div class="test-suitename">TagProcessor</div><div class="test-title">should handle a single edition with &gt;= operator</div><div class="test-status">passed</div><div class="test-duration">0s</div></div></div><div class="test-result passed"><div class="test-info"><div class="test-suitename">TagProcessor</div><div class="test-title">should handle a single edition with &lt; operator</div><div class="test-status">passed</div><div class="test-duration">0s</div></div></div><div class="test-result passed"><div class="test-info"><div class="test-suitename">TagProcessor</div><div class="test-title">should handle a single edition with &gt; operator</div><div class="test-status">passed</div><div class="test-duration">0.001s</div></div></div><div class="test-result passed"><div class="test-info"><div class="test-suitename">TagProcessor</div><div class="test-title">should handle a single edition with no operator</div><div class="test-status">passed</div><div class="test-duration">0s</div></div></div><div class="test-result passed"><div class="test-info"><div class="test-suitename">TagProcessor</div><div class="test-title">should log a message if edition is not found</div><div class="test-status">passed</div><div class="test-duration">0.001s</div></div></div><div class="test-result passed"><div class="test-info"><div class="test-suitename">TagProcessor</div><div class="test-title">should handle multiple editions</div><div class="test-status">passed</div><div class="test-duration">0s</div></div></div><div class="test-result passed"><div class="test-info"><div class="test-suitename">TagProcessor</div><div class="test-title">should build tags correctly when tags are empty</div><div class="test-status">passed</div><div class="test-duration">0.001s</div></div></div></div></div></div></body></html>
package/nobdd/README.md DELETED
@@ -1 +0,0 @@
1
- npm install $(npm pack ../ | tail -1)
@@ -1,17 +0,0 @@
1
- {
2
- "name": "testingframeworknobdd",
3
- "version": "1.0.0",
4
- "description": "collection of examples that we can use for testing",
5
- "keywords": [],
6
- "author": "",
7
- "license": "ISC",
8
- "scripts": {
9
- "uat": "ZDTestingFramework test --mode=dev --headed",
10
- "uatnobdd": "ZDTestingFramework test --mode=nobdd",
11
- "uat-ci": "ZDTestingFramework test --mode=ci --headed",
12
- "uat-clean": "ZDTestingFramework clearCaches",
13
- "uat-debug": "ZDTestingFramework test --mode=dev --debug",
14
- "uat-report": "ZDTestingFramework report --port=9009",
15
- "codegen": "ZDTestingFramework codegen deskclientapp.localzoho.com/agent"
16
- }
17
- }
package/nobdd/src/App.js DELETED
@@ -1,7 +0,0 @@
1
- export function add(a, b) {
2
- return a + b;
3
- }
4
-
5
- export function greet(name) {
6
- return `Hello, ${name}!`;
7
- }
@@ -1,24 +0,0 @@
1
- [
2
- {
3
- "id": "1",
4
- "edition": "enterprise",
5
- "orgName": "zohodeskteam",
6
- "profiles": [
7
- {
8
- "profile": "admin",
9
- "email": "solairaj.m+26jun2023@zohotest.com",
10
- "password": "Demo@1201"
11
- },
12
- {
13
- "profile": "agent",
14
- "email": "anitha.m+agentat@zohotest.com",
15
- "password": "Desk@1234"
16
- },
17
- {
18
- "profile": "lightagent",
19
- "email": "anitha.m+admin@zohotest.com",
20
- "password": "Moon@2018"
21
- }
22
- ]
23
- }
24
- ]
@@ -1,4 +0,0 @@
1
- const enterprise = require('./enterprise.json');
2
- const editions = {enterprise};
3
-
4
- module.exports = editions;
@@ -1,2 +0,0 @@
1
- const editions = require('./editions/index');
2
- module.exports = { editions }
@@ -1,6 +0,0 @@
1
- {
2
- "environment": "ci",
3
- "edition": "enterprise",
4
- "profile": "admin",
5
- "domain": "https://zdesk-devops16.csez.zohocorpin.com:31025/agent"
6
- }
@@ -1,36 +0,0 @@
1
- const customFixtures = require('../../shared/commands/_index-custom-fixtures');
2
-
3
- const { getDefaultActor } = require('@zohodesk/testinglibrary/helpers');
4
-
5
- function getPrimaryCookiePath() {
6
- const { email } = getDefaultActor();
7
- return `uat/playwright/.auth/${email}-cookies.json`;
8
- }
9
-
10
- /**
11
- * Represents the user configuration object.
12
- * @typedef {import('@zohodesk/testinglibrary').UserConfig} UserConfig
13
- */
14
- module.exports = {
15
- headless: false,
16
- retries:1,
17
- openReportOn: 'never',
18
- browsers: ['Chrome'],
19
- isAuthMode: true,
20
- authFilePath: getPrimaryCookiePath(),
21
- trace: 'retain-on-failure',
22
- video: 'retain-on-failure',
23
- retries:1,
24
- bddMode: false,
25
- expectTimeout: 10 * 1000,
26
- testTimeout: 60 * 1000,
27
- globalTimeout: 2 * 60 * 60 * 1000,
28
- featureFilesFolder: 'feature-files',
29
- stepDefinitionsFolder: 'steps',
30
- viewport: { width: 1280, height: 720 },
31
- testIdAttribute: 'data-id',
32
- editionOrder: ['Free', 'Express', 'Standard', 'Professional', 'Enterprise'],
33
- additionalPages: {
34
- ...customFixtures
35
- }
36
- };
@@ -1,20 +0,0 @@
1
- {
2
- "dev": {
3
- "domain": "https://zdesk-devops16.csez.zohocorpin.com:31025/agent",
4
- "orgName": "org-name",
5
- "deptName": "dept-name",
6
- "moduleName": "module-name"
7
- },
8
- "prod": {
9
- "domain": "https://zdesk-devops16.csez.zohocorpin.com:31025/agent",
10
- "orgName": "sangeetha.t@zohocorp.com",
11
- "deptName": "sangeethat",
12
- "moduleName": "sangeethat"
13
- },
14
- "ci": {
15
- "domain": "https://zdesk-devops16.csez.zohocorpin.com:31025/agent",
16
- "orgName": "clientcicdk8",
17
- "deptName": "clientcicdk8",
18
- "moduleName": "tickets"
19
- }
20
- }
@@ -1,44 +0,0 @@
1
- /* eslint-disable no-console */
2
- import {
3
- test as setup,
4
- expect
5
- } from '@zohodesk/testinglibrary';
6
- import {
7
- getDefaultActor,
8
- getUserForSelectedEditionAndProfile,
9
- performLoginSteps
10
- } from '@zohodesk/testinglibrary/helpers'
11
- import { SETUP_HOME_PAGE_SELECTORS } from '../modules/Setup/dom-selectors/SetupSelectors';
12
- import getUrlOrigin from '../shared/url-helpers/getUrlOrigin';
13
-
14
- const { edition, profile } = getDefaultActor();
15
-
16
- const user = getUserForSelectedEditionAndProfile(edition, profile);
17
-
18
- async function verifyPageIsLoaded(page) {
19
- const urlOrigin = getUrlOrigin(page.url());
20
- const domainOrigin = getUrlOrigin(process.env.domain);
21
- if (urlOrigin === domainOrigin) {
22
- await expect(
23
- page
24
- .locator('header')
25
- .getByLabel(SETUP_HOME_PAGE_SELECTORS.SETUP_ICON_LABEL)
26
- ).toBeVisible();
27
- return true;
28
- }
29
- return false;
30
- }
31
-
32
- setup(`${user.edition} - Authentication`, async ({ page }) => {
33
- const { email, password } = user;
34
- await performLoginSteps(
35
- {
36
- page,
37
- authFilePrefix: email,
38
- useremail: email,
39
- password: password
40
- },
41
- verifyPageIsLoaded
42
- );
43
- //await completeOnboardings({ page });
44
- });
@@ -1,33 +0,0 @@
1
- import fs from 'fs';
2
- import path from 'path';
3
- import {
4
- test as teardown,
5
- expect
6
- } from '@zohodesk/testinglibrary';
7
- import { isDevelopmentSetup, loadCookiesIfPresent } from '@zohodesk/testinglibrary/helpers'
8
- import getUrlOrigin from '../shared/url-helpers/getUrlOrigin';
9
-
10
- // We are adding teardown logic only in CI mode
11
- if (!isDevelopmentSetup()) {
12
- teardown(`Log out scenarios`, async ({ page }) => {
13
- const authDirectory = path.resolve(
14
- process.cwd(),
15
- 'uat',
16
- 'playwright',
17
- '.auth'
18
- );
19
- const files = fs.readdirSync(authDirectory);
20
- const promises = files.map(async file => {
21
- const authFilePath = path.join(authDirectory, file);
22
- await loadCookiesIfPresent(page, authFilePath);
23
- const domainOrigin = getUrlOrigin(process.env.domain);
24
- const logoutURL = `${domainOrigin}/support/logout.sas`;
25
- await page.goto(logoutURL);
26
- await page.waitForNavigation();
27
- await expect(page.locator('[id="signin_flow"]')).toBeVisible();
28
- await fs.rmSync(authFilePath);
29
- });
30
-
31
- await Promise.all(promises);
32
- });
33
- }
@@ -1,16 +0,0 @@
1
- import { test, expect } from "@zohodesk/testinglibrary";
2
-
3
- test.describe("Verify no authentication required @nobdd", () => {
4
-
5
- test("Verify the page is not logged in", async ({ page }) => {
6
-
7
- await page.goto(process.env.domain);
8
-
9
- await page.waitForSelector('#login');
10
-
11
- const isLoggedIn = await page.isVisible('#login');
12
- expect(isLoggedIn).toBe(true);
13
-
14
- });
15
-
16
- });
@@ -1,9 +0,0 @@
1
- const i18n = require('./i18n');
2
- const unAuthenticatedPage = require('./unauthenticatedPage');
3
-
4
- const customFixtures = {
5
- ...i18n,
6
- ...unAuthenticatedPage
7
- };
8
-
9
- module.exports = customFixtures;
@@ -1,25 +0,0 @@
1
- /* eslint-disable no-param-reassign */
2
-
3
- // Note: We are duplicating below method from @zohodesk/i18n. We are not importing it as react package not yet availble in test environment.
4
- function replaceI18NValuesWithRegex(i18nStr, values) {
5
- if (typeof values !== 'undefined') {
6
- if (Array.isArray(values)) {
7
- for (let i = 0; i < values.length; i++) {
8
- i18nStr = i18nStr.replace(new RegExp(`\\{${i}\\}`, 'g'), values[i]);
9
- }
10
- } else {
11
- i18nStr = i18nStr.replace(new RegExp('\\{0\\}', 'g'), values);
12
- }
13
- }
14
- return i18nStr;
15
- }
16
-
17
- module.exports = {
18
- i18N: async ({ page }, use) => {
19
- await use(async (key, values) => {
20
- const i18nValue = await page.evaluate((i18nKey) => window.i18n[i18nKey], key);
21
- const i18nStr = replaceI18NValuesWithRegex(i18nValue, values)
22
- return i18nStr;
23
- })
24
- }
25
- }
@@ -1,8 +0,0 @@
1
- module.exports = {
2
- unauthenticatedPage: async ({ browser }, use) => {
3
- const context = await browser.newContext({ storageState: null });
4
- const unauthenticatedPage = await context.newPage();
5
- await use(unauthenticatedPage);
6
- await context.close();
7
- }
8
- }
@@ -1,7 +0,0 @@
1
- const completeOnboardings = require("./onboardings/onboardingUpdate")
2
-
3
-
4
-
5
- module.exports = {
6
- completeOnboardings
7
- }
@@ -1,44 +0,0 @@
1
- async function get_cookie(page) {
2
- return page.evaluate(async () => {
3
- const results = document.cookie.match(`crmcsr=(.*?)(;|$)`);
4
- if (results) {
5
- return unescape(results[1]);
6
- }
7
- return null;
8
- });
9
- }
10
-
11
- async function getOnboardings({ page, cookieVal }) {
12
- return page.evaluate(
13
- async (cookieVal) =>
14
- fetch('/api/v1/onboardingStatus', {
15
- method: 'GET',
16
- headers: {
17
- orgId: window.currentOrg.id,
18
- 'X-ZCSRF-TOKEN': `crmcsrfparam=${cookieVal}`
19
- }
20
- }).then((r) => (r.ok ? r.json() : Promise.reject(r))),
21
- cookieVal
22
- );
23
- }
24
-
25
- async function completeOnboardings({ page }) {
26
- const cookieVal = await get_cookie(page);
27
- const onboardings = await getOnboardings({ page });
28
- if (onboardings.pending.length) {
29
- await page.evaluate(
30
- async ({ cookieVal, onboardings }) =>
31
- fetch('/api/v1/onboardingStatus/markComplete', {
32
- method: 'POST',
33
- headers: {
34
- orgId: window.currentOrg.id,
35
- 'X-ZCSRF-TOKEN': `crmcsrfparam=${cookieVal}`
36
- },
37
- body: JSON.stringify({ items: onboardings.pending })
38
- }),
39
- { cookieVal, onboardings }
40
- );
41
- }
42
- }
43
-
44
- module.exports = completeOnboardings;
@@ -1,6 +0,0 @@
1
- function getUrlOrigin(url) {
2
- const { origin } = new URL(url);
3
- return origin;
4
- }
5
-
6
- module.exports = getUrlOrigin;
@@ -1,37 +0,0 @@
1
- const customFixtures = require('./uat/shared/commands/_index-custom-fixtures');
2
-
3
- const { getDefaultActor } = require('@zohodesk/testinglibrary/helpers');
4
-
5
- function getPrimaryCookiePath() {
6
- const { email } = getDefaultActor();
7
- return `uat/playwright/.auth/${email}-cookies.json`;
8
- }
9
-
10
- /**
11
- * Represents the user configuration object.
12
- * @typedef {import('@zohodesk/testinglibrary').UserConfig} UserConfig
13
- */
14
- module.exports = {
15
- headless: false,
16
- retries:1,
17
- openReportOn: 'never',
18
- browsers: ['Chrome'],
19
- isAuthMode: true,
20
- authFilePath: getPrimaryCookiePath(),
21
- trace: 'retain-on-failure',
22
- video: 'retain-on-failure',
23
- retries:1,
24
- bddMode: false,
25
- expectTimeout: 10 * 1000,
26
- testTimeout: 60 * 1000,
27
- globalTimeout: 2 * 60 * 60 * 1000,
28
- featureFilesFolder: 'feature-files',
29
- stepDefinitionsFolder: 'steps',
30
- viewport: { width: 1280, height: 720 },
31
- testIdAttribute: 'data-id',
32
- editionOrder: ['Free', 'Express', 'Standard', 'Professional', 'Enterprise'],
33
- additionalPages: {
34
- ...customFixtures
35
- },
36
- url:""
37
- };