From 4cf54c60aa63bd614b242da0602790015005673d Mon Sep 17 00:00:00 2001 From: Matthew Phillips Date: Tue, 19 Apr 2022 11:22:15 -0400 Subject: Netlify Edge function support (#3148) * Netlify Edge function support * Update readme with edge function information * Adds a changeset * Disable running edge function test in CI for now --- .../netlify/test/functions/dynamic-route.test.js | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 packages/integrations/netlify/test/functions/dynamic-route.test.js (limited to 'packages/integrations/netlify/test/functions/dynamic-route.test.js') diff --git a/packages/integrations/netlify/test/functions/dynamic-route.test.js b/packages/integrations/netlify/test/functions/dynamic-route.test.js new file mode 100644 index 000000000..279982767 --- /dev/null +++ b/packages/integrations/netlify/test/functions/dynamic-route.test.js @@ -0,0 +1,28 @@ +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(), + experimental: { + ssr: true, + }, + 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\/\*/); + }); +}); -- cgit v1.2.3