@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.
- package/dist/config/loader.js +6 -1
- package/package.json +1 -1
- package/src/config/loader.ts +6 -1
package/dist/config/loader.js
CHANGED
|
@@ -119,7 +119,12 @@ function mergeTestConfig(projectConfig, testConfig) {
|
|
|
119
119
|
...projectConfig.ai,
|
|
120
120
|
...testConfig.ai
|
|
121
121
|
},
|
|
122
|
-
|
|
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
package/src/config/loader.ts
CHANGED
|
@@ -90,7 +90,12 @@ export function mergeTestConfig(
|
|
|
90
90
|
...projectConfig.ai,
|
|
91
91
|
...testConfig.ai
|
|
92
92
|
},
|
|
93
|
-
|
|
93
|
+
performance: {
|
|
94
|
+
...projectConfig.performance,
|
|
95
|
+
...testConfig.performance
|
|
96
|
+
},
|
|
97
|
+
selectors: testConfig.selectors,
|
|
98
|
+
useCDP: testConfig.useCDP
|
|
94
99
|
};
|
|
95
100
|
}
|
|
96
101
|
|