@zohodesk/testinglibrary 0.0.33-n20-experimental → 0.0.34-n20-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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohodesk/testinglibrary",
3
- "version": "0.0.33-n20-experimental",
3
+ "version": "0.0.34-n20-experimental",
4
4
  "main": "./build/index.js",
5
5
  "scripts": {
6
6
  "postinstall": "node bin/postinstall.js",
@@ -36,7 +36,8 @@
36
36
  "playwright": "1.56.1",
37
37
  "playwright-bdd": "8.4.2",
38
38
  "properties-reader": "2.3.0",
39
- "supports-color": "10.2.2"
39
+ "supports-color": "10.2.2",
40
+ "@zohodesk/unit-testing-framework": "0.0.5-experimental"
40
41
  },
41
42
  "bin": {
42
43
  "ZDTestingFramework": "./bin/cli.js"
@@ -1,11 +1,8 @@
1
- import { generateConfigFromFile } from './src/core/playwright/readConfigFile'
2
1
  // @ts-check
3
2
  const { defineConfig, devices } = require('@playwright/test');
4
3
  const path = require('path');
5
4
  const numCPUs = require('os').cpus().length;
6
5
 
7
- const uatConfig = generateConfigFromFile();
8
-
9
6
  export default defineConfig({
10
7
  testDir: path.join(path.resolve(process.cwd()), 'uat'),
11
8
  outputDir: path.join(process.cwd(), 'uat', 'test-results'),
@@ -21,11 +18,6 @@ export default defineConfig({
21
18
  video: {
22
19
  mode: 'on',
23
20
  size: { width: 640, height: 480 }
24
- },
25
- proxy: {
26
- server: uatConfig.proxy.server,
27
- username: uatConfig.proxy.username,
28
- password: uatConfig.proxy.password
29
21
  }
30
22
  },
31
23
  projects: [
Binary file