@zohodesk/testinglibrary 0.3.7-experimental → 0.3.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.
@@ -56,7 +56,6 @@ function getPlaywrightConfig() {
56
56
  globalTimeout: globalTimeout || 3600000,
57
57
  outputDir: _path.default.join(process.cwd(), 'uat', 'test-results'),
58
58
  fullyParallel: true,
59
- forbidOnly: !!process.env.CI,
60
59
  retries: process.env.CI ? 2 : 0,
61
60
  reporter: [['html', {
62
61
  outputFolder: reportPath,
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohodesk/testinglibrary",
3
- "version": "0.3.7-experimental",
3
+ "version": "0.2.1",
4
4
  "lockfileVersion": 1,
5
5
  "requires": true,
6
6
  "dependencies": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohodesk/testinglibrary",
3
- "version": "0.3.7-experimental",
3
+ "version": "0.3.8-experimental",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "scripts": {
@@ -18,7 +18,7 @@ export default defineConfig({
18
18
  /* Run tests in files in parallel */
19
19
  fullyParallel: true,
20
20
  /* Fail the build on CI if you accidentally left test.only in the source code. */
21
- forbidOnly: !!process.env.CI,
21
+ //forbidOnly: !!process.env.CI,
22
22
  /* Retry on CI only */
23
23
  retries: process.env.CI ? 2 : 0,
24
24
  /* Reporter to use. See https://playwright.dev/docs/test-reporters */