We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
@webcontainer/test
1 parent a11497c commit 0395e92Copy full SHA for 0395e92
.github/workflows/ecosystem-ci.yml
@@ -25,6 +25,7 @@ jobs:
25
matrix:
26
suite:
27
- starters
28
+ - webcontainer-test
29
fail-fast: false
30
steps:
31
- uses: actions/checkout@v4
tests/webcontainer-test.ts
@@ -0,0 +1,9 @@
1
+import { defineTest } from "../src/test";
2
+
3
+export default defineTest({
4
+ repo: "stackblitz/webcontainer-test",
5
+ branch: "main",
6
+ test: ["test"],
7
+ beforeTest:
8
+ "npx playwright install chromium firefox --with-deps --only-shell",
9
+});
0 commit comments