Skip to content

Commit

Permalink
test: exclude playground tests from root package tests
Browse files Browse the repository at this point in the history
  • Loading branch information
SegaraRai committed Jun 25, 2024
1 parent 9701f37 commit 17b51e1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- main

jobs:
deploy:
test:
runs-on: ubuntu-latest

steps:
Expand Down
5 changes: 4 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { defineConfig } from "vite";
import dts from "vite-plugin-dts";
import { externalizeDeps } from "vite-plugin-externalize-deps";
import { defineConfig } from "vitest/config";

export default defineConfig({
build: {
Expand All @@ -26,4 +26,7 @@ export default defineConfig({
rollupTypes: true,
}),
],
test: {
include: ["tests/**/*.test.ts"],
},
});

0 comments on commit 17b51e1

Please sign in to comment.