mirror of
https://github.com/excalidraw/excalidraw.git
synced 2024-11-10 11:35:52 +01:00
51ea184938
* build: upgrade vite to 5.x, vitest to 2.x and related vite packages * upgrade vitest-ui and coverage * pass empty set to fix type error and update snap * set ignoreEmptyLines to false * update threshold * update coverage threshold * downgrade vite-plugin-pwa as its better to push separately with testing * add package resolutions for strip-ansi, string-width and wrap-ansi * disable pwa * only add resolution for strip-ansi
30 lines
923 B
TypeScript
30 lines
923 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
import { woff2BrowserPlugin } from "./scripts/woff2/woff2-vite-plugins";
|
|
|
|
export default defineConfig({
|
|
//@ts-ignore
|
|
plugins: [woff2BrowserPlugin()],
|
|
test: {
|
|
// Since hooks are running in stack in v2, which means all hooks run serially whereas
|
|
// we need to run them in parallel
|
|
sequence: {
|
|
hooks: 'parallel',
|
|
},
|
|
setupFiles: ["./setupTests.ts"],
|
|
globals: true,
|
|
environment: "jsdom",
|
|
coverage: {
|
|
reporter: ["text", "json-summary", "json", "html", "lcovonly"],
|
|
// Since v2, it ignores empty lines by default and we need to disable it as it affects the coverage
|
|
// Additionally the thresholds also needs to be updated slightly as a result of this change
|
|
ignoreEmptyLines: false,
|
|
thresholds: {
|
|
lines: 66,
|
|
branches: 70,
|
|
functions: 63,
|
|
statements: 66,
|
|
},
|
|
},
|
|
},
|
|
});
|