You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.option('app',{type: 'string',default: undefined,desc: 'The custom CLI command that will be used to run the test files. You can include {filePath} to specify where in the command the test file path should be inserted. Example: --app="python3.8 {filePath}".'})
52
52
.option('test-regex',{type: 'array',desc: 'Detect integration test files matching this JavaScript regex pattern. If used multiple times, all files matching any one of the patterns are detected.',default: []})
53
-
.option('unstable',{type: 'array',desc: 'Opt-in to using unstable features. By using this flags acknowledges that the scope and API of the feature may change without notice. Specify multiple times for each unstable feature you want to opt-in to.',nargs: 1,choices: ['toolkit-lib-engine'],default: []})
53
+
.option('unstable',{type: 'array',desc: 'Opt-in to using unstable features. By using these flags you acknowledges that scope and APIs of unstable features may change without notice. Specify multiple times for each unstable feature you want to opt-in to.',nargs: 1,choices: ['toolkit-lib-engine','deprecated-cli-engine'],default: []})
logger.warning('[Notice] You are using the new default engine to execute integration tests. If you think the above error may be caused by the new engine, you can choose to temporarily revert to the previous engine by adding the `--unstable=deprecated-cli-engine` option. Please note that this engine is deprecated and scheduled to be removed in January 2026.\n\nIf reverting to the old engine resolves an issue for you, please let us know so we can address any issues with the new engine. Report issues here: <TODO>');
logger.warning('[Deprecation Notice] You have opted-in to use the deprecated CLI engine which is scheduled to be removed in January 2026. If you have encountered any blockers to use the new default engine, please let us know by opening an issue: <TODO>\n\nTo use the new default engine, please remove the `--unstable=deprecated-cli-engine` option.');
0 commit comments