@testivai/witness-playwright 0.1.9 → 0.1.10

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.
@@ -119,7 +119,12 @@ function mergeTestConfig(projectConfig, testConfig) {
119
119
  ...projectConfig.ai,
120
120
  ...testConfig.ai
121
121
  },
122
- selectors: testConfig.selectors
122
+ performance: {
123
+ ...projectConfig.performance,
124
+ ...testConfig.performance
125
+ },
126
+ selectors: testConfig.selectors,
127
+ useCDP: testConfig.useCDP
123
128
  };
124
129
  }
125
130
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testivai/witness-playwright",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "Playwright sensor for Testivai Visual Regression Test system",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -90,7 +90,12 @@ export function mergeTestConfig(
90
90
  ...projectConfig.ai,
91
91
  ...testConfig.ai
92
92
  },
93
- selectors: testConfig.selectors
93
+ performance: {
94
+ ...projectConfig.performance,
95
+ ...testConfig.performance
96
+ },
97
+ selectors: testConfig.selectors,
98
+ useCDP: testConfig.useCDP
94
99
  };
95
100
  }
96
101