Breaking Changes
ProcessExecutor constructor now accept an options object at the 2nd parameter instead of the env variable dict.
- new ProcessExecutor("node", { key: "value" });
+ new ProcessExecutor("node", { env: { key: "value" } });
New Features
- Expose log functions to suite lifecycle hooks.
- Add support of specify
stdio for ProcessExecutor & NodeExecutor.
- Add support of automatic open browser for HTML reporter.
Fixes
- Fix
WebextExecutor cannot find the extension ID with Playwright 1.50
- Fix validator does not inspect the
pattern option of the suite.