70bf21e064
Deploy (to testing) and Test Playground Preview Worker / Deploy Playground Preview Worker (testing) (push) Has been skipped
Deploy Workers Shared Staging / Deploy Workers Shared Staging (push) Failing after 0s
Prerelease / build (push) Has been skipped
Handle Changesets / Handle Changesets (push) Has been cancelled
Semgrep OSS scan / semgrep-oss (push) Has been cancelled
20 lines
588 B
TypeScript
20 lines
588 B
TypeScript
import util from "node:util";
|
|
import { defineConfig } from "vitest/config";
|
|
|
|
const debuglog = util.debuglog("@cloudflare:vite-plugin");
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
// We run these tests one file at a time.
|
|
// Otherwise we occasionally get flakes where two playground variants are overwriting the same files.
|
|
fileParallelism: false,
|
|
include: ["./**/__tests__/**/*.spec.[tj]s"],
|
|
setupFiles: ["./vitest-setup.ts"],
|
|
globalSetup: ["./vitest-global-setup.ts"],
|
|
reporters: "dot",
|
|
onConsoleLog: () => debuglog.enabled,
|
|
testTimeout: 10000,
|
|
},
|
|
publicDir: false,
|
|
});
|