Skip to content

Commit 6bb0ecb

Browse files
authored
feat: add tutorialkit (#7)
1 parent eb93bcc commit 6bb0ecb

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

.github/workflows/ecosystem-ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ on:
2323
options:
2424
- all
2525
- starters
26+
- tutorialkit
2627
- vitest-in-webcontainer
2728
- webcontainer-test
2829

@@ -36,6 +37,7 @@ jobs:
3637
matrix:
3738
suite:
3839
- starters
40+
- tutorialkit
3941
- vitest-in-webcontainer
4042
- webcontainer-test
4143
steps:

tests/starters.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { defineTest } from "../src/test";
33
export default defineTest({
44
repo: "stackblitz/starters",
55
branch: "main",
6-
76
test: [
87
"test -- --project chromium",
98

tests/tutorialkit.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import { defineTest } from "../src/test";
2+
3+
export default defineTest({
4+
repo: "stackblitz/tutorialkit",
5+
branch: "main",
6+
test: "test:e2e",
7+
build: "build",
8+
beforeTest:
9+
"pnpm --filter=tutorialkit-e2e exec playwright install chromium --with-deps",
10+
});

tests/webcontainer-test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { defineTest } from "../src/test";
33
export default defineTest({
44
repo: "stackblitz/webcontainer-test",
55
branch: "main",
6-
test: ["test"],
6+
test: "test",
77
beforeTest:
88
"npx playwright install chromium firefox --with-deps --only-shell",
99
});

0 commit comments

Comments
 (0)