summaryrefslogtreecommitdiff
path: root/packages/integrations/netlify/test/functions/split-support.test.js
diff options
context:
space:
mode:
authorGravatar Matthew Phillips <matthew@skypack.dev> 2023-08-24 10:38:14 -0400
committerGravatar GitHub <noreply@github.com> 2023-08-24 10:38:14 -0400
commitf1c610636a7aeed0a272ab2669815135699b413c (patch)
treed7597c3468197559948f9fe2bafe13a8c3d71106 /packages/integrations/netlify/test/functions/split-support.test.js
parent608b2d732d762bf1f7f44a82b278caa8853c8c2f (diff)
parentebaccf8c1a2f37eacb6e1957c82fdf7f93b62b08 (diff)
downloadastro-f1c610636a7aeed0a272ab2669815135699b413c.tar.gz
astro-f1c610636a7aeed0a272ab2669815135699b413c.tar.zst
astro-f1c610636a7aeed0a272ab2669815135699b413c.zip
Merge pull request #8188 from withastro/next
Astro 3.0
Diffstat (limited to 'packages/integrations/netlify/test/functions/split-support.test.js')
-rw-r--r--packages/integrations/netlify/test/functions/split-support.test.js26
1 files changed, 13 insertions, 13 deletions
diff --git a/packages/integrations/netlify/test/functions/split-support.test.js b/packages/integrations/netlify/test/functions/split-support.test.js
index 217b3c0d3..90427523c 100644
--- a/packages/integrations/netlify/test/functions/split-support.test.js
+++ b/packages/integrations/netlify/test/functions/split-support.test.js
@@ -13,6 +13,7 @@ describe('Split support', () => {
output: 'server',
adapter: netlifyAdapter({
dist: new URL('./fixtures/split-support/dist/', import.meta.url),
+ functionPerRoute: true,
}),
site: `http://example.com`,
integrations: [
@@ -22,9 +23,6 @@ describe('Split support', () => {
},
}),
],
- build: {
- split: true,
- },
});
await fixture.build();
});
@@ -32,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;
@@ -45,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;