diff options
Diffstat (limited to 'packages/integrations/cloudflare/test/function-per-route.test.js')
-rw-r--r-- | packages/integrations/cloudflare/test/function-per-route.test.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/integrations/cloudflare/test/function-per-route.test.js b/packages/integrations/cloudflare/test/function-per-route.test.js index 19cbfde39..5a4aba0ac 100644 --- a/packages/integrations/cloudflare/test/function-per-route.test.js +++ b/packages/integrations/cloudflare/test/function-per-route.test.js @@ -21,7 +21,8 @@ describe('Function per Route', () => { expect(existsSync(fileURLToPath(new URL('functions/blog/[post].js', root)))).to.be.true; expect(existsSync(fileURLToPath(new URL('functions/[person]/[car].js', root)))).to.be.true; expect(existsSync(fileURLToPath(new URL('functions/files/[[path]].js', root)))).to.be.true; - expect(existsSync(fileURLToPath(new URL('functions/[language]/files/[[path]].js', root)))).to.be.true; + expect(existsSync(fileURLToPath(new URL('functions/[language]/files/[[path]].js', root)))).to.be + .true; expect(existsSync(fileURLToPath(new URL('functions/trpc/[trpc].js', root)))).to.be.true; expect(existsSync(fileURLToPath(new URL('functions/javascript.js', root)))).to.be.true; expect(existsSync(fileURLToPath(new URL('functions/test.json.js', root)))).to.be.true; |