diff options
Diffstat (limited to 'packages/integrations/cloudflare/test/routes-json.test.js')
-rw-r--r-- | packages/integrations/cloudflare/test/routes-json.test.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/cloudflare/test/routes-json.test.js b/packages/integrations/cloudflare/test/routes-json.test.js index ee788721d..22bb5e3eb 100644 --- a/packages/integrations/cloudflare/test/routes-json.test.js +++ b/packages/integrations/cloudflare/test/routes-json.test.js @@ -228,13 +228,13 @@ describe('_routes.json generation', () => { await fixture.build(); }); - it('creates `include` for on-demand and `exclude` that are supposed to match nothin', async () => { + it('creates `include` for on-demand and `exclude` that are supposed to match nothing', async () => { const _routesJson = await fixture.readFile('/_routes.json'); const routes = JSON.parse(_routesJson); assert.deepEqual(routes, { version: 1, - include: ['/_image', '/dynamic'], + include: ['/dynamic', '/_image'], exclude: [], }); }); |