try with firefox

This commit is contained in:
Timo K
2026-05-11 19:16:07 +02:00
parent 7ca890ea53
commit f37128414a

View File

@@ -17,6 +17,7 @@ export default defineConfig((configEnv) =>
{ {
extends: true, extends: true,
test: { test: {
name: "unit",
css: { css: {
modules: { modules: {
classNameStrategy: "non-scoped", classNameStrategy: "non-scoped",
@@ -27,7 +28,6 @@ export default defineConfig((configEnv) =>
// an example of file based convention, // an example of file based convention,
// you don't have to follow it // you don't have to follow it
include: ["src/**/*.test.ts", "src/**/*.test.tsx"], include: ["src/**/*.test.ts", "src/**/*.test.tsx"],
name: "unit",
}, },
}, },
{ {
@@ -45,7 +45,7 @@ export default defineConfig((configEnv) =>
// Make sure to install Playwright // Make sure to install Playwright
provider: playwright(), provider: playwright(),
headless: true, headless: true,
instances: [{ browser: "chromium" }], instances: [{ browser: "firefox" }],
}, },
}, },
}, },