diff options
author | 2023-08-16 10:21:05 +0200 | |
---|---|---|
committer | 2023-08-16 10:21:05 +0200 | |
commit | b76c166bdd8e28683f62806aef968d1e0c3b06d9 (patch) | |
tree | 31a737ce2999e8cd625f3948b4bf326ed8b6489a /packages/integrations/netlify/test/functions/split-support.test.js | |
parent | e12a1018429eb506a8507a4b9ae57388be4d0f7f (diff) | |
download | astro-b76c166bdd8e28683f62806aef968d1e0c3b06d9.tar.gz astro-b76c166bdd8e28683f62806aef968d1e0c3b06d9.tar.zst astro-b76c166bdd8e28683f62806aef968d1e0c3b06d9.zip |
feat: unflag experimental.assets (#7921)
Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
Co-authored-by: Emanuele Stoppa <my.burning@gmail.com>
Diffstat (limited to 'packages/integrations/netlify/test/functions/split-support.test.js')
-rw-r--r-- | packages/integrations/netlify/test/functions/split-support.test.js | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/packages/integrations/netlify/test/functions/split-support.test.js b/packages/integrations/netlify/test/functions/split-support.test.js index fde8b5eb1..90427523c 100644 --- a/packages/integrations/netlify/test/functions/split-support.test.js +++ b/packages/integrations/netlify/test/functions/split-support.test.js @@ -30,7 +30,7 @@ describe('Split support', () => { it('outputs a correct redirect file', async () => { const redir = await fixture.readFile('/_redirects'); const lines = redir.split(/[\r\n]+/); - expect(lines.length).to.equal(2); + expect(lines.length).to.equal(3); expect(lines[0].includes('/blog')).to.be.true; expect(lines[0].includes('blog.astro')).to.be.true; @@ -43,15 +43,17 @@ describe('Split support', () => { describe('Should create multiple functions', () => { it('and hit 200', async () => { if (_entryPoints) { - for (const [, filePath] of _entryPoints) { - const { handler } = await import(filePath.toString()); - const resp = await handler({ - httpMethod: 'POST', - headers: {}, - rawUrl: 'http://example.com/', - body: '{}', - }); - expect(resp.statusCode).to.equal(200); + for (const [routeData, filePath] of _entryPoints) { + if (routeData.route !== '/_image') { + const { handler } = await import(filePath.toString()); + const resp = await handler({ + httpMethod: 'GET', + headers: {}, + rawUrl: `http://example.com${routeData.route}`, + body: '{}', + }); + expect(resp.statusCode).to.equal(200); + } } } else { expect(false).to.be.true; |