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.
1 parent 74c6447 commit c7ada46Copy full SHA for c7ada46
.github/workflows/unit-tests.yml
@@ -30,5 +30,8 @@ jobs:
30
- name: 📀 Generate Prisma Client
31
run: pnpm run generate
32
33
- - name: 🧪 Run Unit Tests
34
- run: pnpm run test
+ - name: 🧪 Run Webapp Unit Tests
+ run: pnpm run test --filter webapp
35
+
36
+ - name: 🧪 Run Internal Unit Tests
37
+ run: pnpm run test --filter "@internal/*"
apps/webapp/vitest.config.ts
@@ -5,6 +5,7 @@ export default defineConfig({
5
test: {
6
include: ["test/**/*.test.ts"],
7
globals: true,
8
+ pool: "forks",
9
},
10
// @ts-ignore
11
plugins: [tsconfigPaths({ projects: ["./tsconfig.json"] })],
0 commit comments