Skip to content

Commit

Permalink
Run tsc in vite-plugin-react (#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudBarre authored Jan 26, 2024
1 parent 73094ca commit db1b895
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions tests/vite-plugin-react-swc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ export async function test(options: RunOptions) {
await runInRepo({
...options,
repo: 'vitejs/vite-plugin-react-swc',
beforeBuild: 'tsc',
build: 'build',
beforeTest: 'pnpm playwright install chromium',
test: 'test',
test: ['test', 'tsc'],
})
}
2 changes: 1 addition & 1 deletion tests/vite-plugin-react.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ export async function test(options: RunOptions) {
repo: 'vitejs/vite-plugin-react',
build: 'build',
beforeTest: 'pnpm playwright install chromium',
test: 'test',
test: ['test', 'typecheck'],
})
}

0 comments on commit db1b895

Please sign in to comment.