diff --git a/src/content/docs/workers/testing/vitest-integration/write-your-first-test.mdx b/src/content/docs/workers/testing/vitest-integration/write-your-first-test.mdx index 06c24251524959f..aa0fb66a4cfe50d 100644 --- a/src/content/docs/workers/testing/vitest-integration/write-your-first-test.mdx +++ b/src/content/docs/workers/testing/vitest-integration/write-your-first-test.mdx @@ -49,7 +49,7 @@ export default defineWorkersConfig({ test: { poolOptions: { workers: { - wrangler: { configPath: "./wrangler.toml" }, + wrangler: { configPath: "./wrangler.jsonc" }, }, }, }, @@ -65,7 +65,7 @@ For example, this configuration would add a KV namespace `TEST_NAMESPACE` that w test: { poolOptions: { workers: { - wrangler: { configPath: "./wrangler.toml" }, + wrangler: { configPath: "./wrangler.jsonc" }, miniflare: { kvNamespaces: ["TEST_NAMESPACE"], },