summaryrefslogtreecommitdiff
path: root/packages/integrations/netlify/test/functions/dynamic-route.test.js
diff options
context:
space:
mode:
authorGravatar Matthew Phillips <matthew@skypack.dev> 2023-09-28 04:48:26 +0800
committerGravatar GitHub <noreply@github.com> 2023-09-27 16:48:26 -0400
commit4ed410db507723d8f8edd70aec508415d77ad2f5 (patch)
treedd876939fc708358d0675ba159e0a1d9af0fcd79 /packages/integrations/netlify/test/functions/dynamic-route.test.js
parenta10a798c18512796d2c8b8ed49924dafd884e04c (diff)
downloadastro-4ed410db507723d8f8edd70aec508415d77ad2f5.tar.gz
astro-4ed410db507723d8f8edd70aec508415d77ad2f5.tar.zst
astro-4ed410db507723d8f8edd70aec508415d77ad2f5.zip
Remove Netlify adapter from core (#8574)
* New link * More explicit * Add placeholder package.json * lockfile * add keyworkds
Diffstat (limited to 'packages/integrations/netlify/test/functions/dynamic-route.test.js')
-rw-r--r--packages/integrations/netlify/test/functions/dynamic-route.test.js33
1 files changed, 0 insertions, 33 deletions
diff --git a/packages/integrations/netlify/test/functions/dynamic-route.test.js b/packages/integrations/netlify/test/functions/dynamic-route.test.js
deleted file mode 100644
index 6bb68eab8..000000000
--- a/packages/integrations/netlify/test/functions/dynamic-route.test.js
+++ /dev/null
@@ -1,33 +0,0 @@
-import { expect } from 'chai';
-import netlifyAdapter from '../../dist/index.js';
-import { loadFixture, testIntegration } from './test-utils.js';
-
-describe('Dynamic pages', () => {
- /** @type {import('./test-utils').Fixture} */
- let fixture;
-
- before(async () => {
- fixture = await loadFixture({
- root: new URL('./fixtures/dynamic-route/', import.meta.url).toString(),
- output: 'server',
- adapter: netlifyAdapter({
- dist: new URL('./fixtures/dynamic-route/dist/', import.meta.url),
- }),
- site: `http://example.com`,
- integrations: [testIntegration()],
- });
- await fixture.build();
- });
-
- it('Dynamic pages are included in the redirects file', async () => {
- const redir = await fixture.readFile('/_redirects');
- expect(redir).to.match(/\/products\/:id/);
- });
-
- it('Prerendered routes are also included using placeholder syntax', async () => {
- const redir = await fixture.readFile('/_redirects');
- expect(redir).to.include('/pets/:cat /pets/:cat/index.html 200');
- expect(redir).to.include('/pets/:dog /pets/:dog/index.html 200');
- expect(redir).to.include('/pets /.netlify/functions/entry 200');
- });
-});