1 Star 1 Fork 2

spklee/excalidraw

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vitest.config.mts 815 Bytes
一键复制 编辑 原始数据 按行查看 历史
import { defineConfig } from "vitest/config";
export default defineConfig({
//@ts-ignore
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: 60,
branches: 70,
functions: 63,
statements: 60,
},
},
},
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/spklee/excalidraw.git
git@gitee.com:spklee/excalidraw.git
spklee
excalidraw
excalidraw
master

搜索帮助