diff --git a/.github/workflows/ecosystem-ci.yml b/.github/workflows/ecosystem-ci.yml index 9183d67..e8eceb1 100644 --- a/.github/workflows/ecosystem-ci.yml +++ b/.github/workflows/ecosystem-ci.yml @@ -25,6 +25,7 @@ jobs: matrix: suite: - starters + - vitest-in-webcontainer - webcontainer-test fail-fast: false steps: diff --git a/tests/vitest-in-webcontainer.ts b/tests/vitest-in-webcontainer.ts new file mode 100644 index 0000000..74ecc11 --- /dev/null +++ b/tests/vitest-in-webcontainer.ts @@ -0,0 +1,8 @@ +import { defineTest } from "../src/test"; + +export default defineTest({ + repo: "vitest-tests/vitest-in-webcontainer", + branch: "main", + test: "test", + beforeTest: "npx playwright install chromium --with-deps --only-shell", +});