Refactor Study Desk application structure
This commit is contained in:
parent
faaccf8a7e
commit
089439ed90
145 changed files with 8087 additions and 3412 deletions
18
vitest.benchmark.config.ts
Normal file
18
vitest.benchmark.config.ts
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
import { fileURLToPath } from "node:url";
|
||||
import { defineConfig } from "vitest/config";
|
||||
|
||||
export default defineConfig({
|
||||
resolve: {
|
||||
alias: {
|
||||
"@": fileURLToPath(new URL("./src", import.meta.url)),
|
||||
},
|
||||
},
|
||||
test: {
|
||||
environment: "node",
|
||||
globalSetup: ["./tests/setup/globalSetup.ts"],
|
||||
include: ["benchmarks/remediationBenchmark.test.ts"],
|
||||
fileParallelism: false,
|
||||
disableConsoleIntercept: true,
|
||||
testTimeout: 120_000,
|
||||
},
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue