We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdc7bec commit 0c5c0dcCopy full SHA for 0c5c0dc
web-test-runner.config.mjs
@@ -1,4 +1,4 @@
1
-// import { playwrightLauncher } from '@web/test-runner-playwright';
+import { playwrightLauncher } from '@web/test-runner-playwright';
2
3
const filteredLogs = ['in dev mode', 'scheduled an update'];
4
@@ -31,11 +31,11 @@ export default /** @type {import("@web/test-runner").TestRunnerConfig} */ ({
31
// concurrency: 1,
32
33
/** Browsers to run tests on */
34
- // browsers: [
35
- // playwrightLauncher({ product: 'chromium' }),
+ browsers: [
+ playwrightLauncher({ product: 'chromium' }),
36
// playwrightLauncher({ product: 'firefox' }),
37
// playwrightLauncher({ product: 'webkit' }),
38
- // ],
+ ],
39
40
// See documentation for all available options
41
});
0 commit comments