testcafe 2.5.0-rc.2 → 2.5.0-rc.3
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 +1 -1
- package/ts-defs/index.d.ts +4 -1
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "testcafe",
|
|
3
3
|
"description": "Automated browser testing for the modern web development stack.",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"version": "2.5.0-rc.
|
|
5
|
+
"version": "2.5.0-rc.3",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Developer Express Inc.",
|
|
8
8
|
"url": "https://www.devexpress.com/"
|
package/ts-defs/index.d.ts
CHANGED
|
@@ -2672,6 +2672,10 @@ declare module 'testcafe' {
|
|
|
2672
2672
|
* Disables support for multi-window testing in Chrome and Firefox. Use this option if you encounter compatibility issues with your existing tests.
|
|
2673
2673
|
*/
|
|
2674
2674
|
disableMultipleWindows: boolean;
|
|
2675
|
+
/**
|
|
2676
|
+
* Enables native automation of Chromium-based browsers. Use this option to speed up browser automation and increase test stability.
|
|
2677
|
+
*/
|
|
2678
|
+
nativeAutomation: boolean;
|
|
2675
2679
|
}
|
|
2676
2680
|
|
|
2677
2681
|
interface StartOptions {
|
|
@@ -2684,7 +2688,6 @@ declare module 'testcafe' {
|
|
|
2684
2688
|
cache: boolean;
|
|
2685
2689
|
configFile: string;
|
|
2686
2690
|
disableHttp2: boolean;
|
|
2687
|
-
proxyless: boolean;
|
|
2688
2691
|
}
|
|
2689
2692
|
|
|
2690
2693
|
interface ColorOutputOptions {
|