38 lines
1.0 KiB
TypeScript
38 lines
1.0 KiB
TypeScript
/* eslint-disable @typescript-eslint/naming-convention */
|
|
import path from "node:path";
|
|
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
name: "spt-server",
|
|
reporters: ["default"],
|
|
root: "./",
|
|
include: ["**/*.{test,spec}.?(c|m)[jt]s?(x)"],
|
|
cache: {
|
|
dir: "./tests/__cache__"
|
|
},
|
|
environment: "./tests/CustomEnvironment.ts",
|
|
globals: true,
|
|
coverage: {
|
|
provider: "istanbul",
|
|
reporter: ["text", "html"],
|
|
reportsDirectory: "./tests/__coverage__",
|
|
reportOnFailure: true,
|
|
all: true,
|
|
include: ["src"],
|
|
exclude: ["src/models/**", "tests/**"]
|
|
},
|
|
pool: "threads",
|
|
poolOptions: {
|
|
threads: {
|
|
singleThread: true,
|
|
isolate: false
|
|
}
|
|
},
|
|
alias: {
|
|
"@spt-aki": path.resolve(__dirname, "src"),
|
|
"@tests": path.resolve(__dirname, "tests")
|
|
}
|
|
}
|
|
});
|