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.
test
test:unit
1 parent 082040e commit 8c43d44Copy full SHA for 8c43d44
.github/workflows/ci.yml
@@ -16,6 +16,6 @@ jobs:
16
run: |
17
bun install
18
bun run playwright install --with-deps
19
- bun run build:lib
20
- bun run test
21
- bun run test:e2e
+ bun build:lib
+ bun test:unit
+ bun test:e2e
package.json
@@ -10,7 +10,7 @@
10
"build": "bunx --bun astro build",
11
"build:lib": "bun scripts/index.js",
12
"package": "bun scripts/npm-package.js",
13
- "test": "bun test tests/*.ts",
+ "test:unit": "bun test tests/*.ts",
14
"test:e2e": "playwright test",
15
"format": "bunx --bun prettier --write .",
"astro": "astro",
0 commit comments