mirror of
https://github.com/cloudflare/cloudflare-docs.git
synced 2026-01-11 20:06:58 +00:00
* Move to Workers * Add a thing to force a trailing slash for redirect evaluation * Standardize _redirects * Add tests (#17503) * Exclude tests from typechecking
12 lines
275 B
TypeScript
12 lines
275 B
TypeScript
import { defineWorkersConfig } from "@cloudflare/vitest-pool-workers/config";
|
|
|
|
export default defineWorkersConfig({
|
|
test: {
|
|
globalSetup: ["./tests/globalSetup.ts"],
|
|
poolOptions: {
|
|
workers: {
|
|
wrangler: { configPath: "./wrangler-workers.toml" },
|
|
},
|
|
},
|
|
},
|
|
});
|