mirror of
https://github.com/excalidraw/excalidraw
synced 2025-07-25 13:58:22 +08:00
exclude playwright tests from vitest
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
import path from "path";
|
||||
|
||||
import { defineConfig } from "vitest/config";
|
||||
import { defineConfig, configDefaults } from "vitest/config";
|
||||
|
||||
export default defineConfig({
|
||||
resolve: {
|
||||
@ -49,6 +49,7 @@ export default defineConfig({
|
||||
},
|
||||
//@ts-ignore
|
||||
test: {
|
||||
exclude: [...configDefaults.exclude, "**/playwright/**"],
|
||||
// Since hooks are running in stack in v2, which means all hooks run serially whereas
|
||||
// we need to run them in parallel
|
||||
sequence: {
|
||||
|
Reference in New Issue
Block a user