|
| 1 | +import { expect } from '@playwright/test' |
| 2 | +import { test } from '../utils/playwright-helpers.js' |
| 3 | + |
| 4 | +test('Renders the Home page correctly', async ({ page, withIntegrations }) => { |
| 5 | + await page.goto(withIntegrations.url) |
| 6 | + |
| 7 | + expect(page.locator('body')).toHaveText('Hello World') |
| 8 | +}) |
| 9 | + |
| 10 | +test.describe('Should clear stale functions produced by previous builds by @netlify/plugin-nextjs', () => { |
| 11 | + test('Serverless functions', async ({ page, withIntegrations }) => { |
| 12 | + const response1 = await page.goto(new URL('/test/serverless/v4', withIntegrations.url).href) |
| 13 | + expect(response1?.status()).toBe(404) |
| 14 | + |
| 15 | + const response2 = await page.goto(new URL('/test/serverless/v5', withIntegrations.url).href) |
| 16 | + expect(response2?.status()).toBe(404) |
| 17 | + }) |
| 18 | + |
| 19 | + test('Edge functions', async ({ page, withIntegrations }) => { |
| 20 | + const response1 = await page.goto(new URL('/test/edge/v4', withIntegrations.url).href) |
| 21 | + expect(response1?.status()).toBe(404) |
| 22 | + |
| 23 | + const response2 = await page.goto(new URL('/test/edge/v5', withIntegrations.url).href) |
| 24 | + expect(response2?.status()).toBe(404) |
| 25 | + }) |
| 26 | +}) |
| 27 | + |
| 28 | +test.describe('Should keep functions produced by other build plugins', () => { |
| 29 | + test('Serverless functions', async ({ page, withIntegrations }) => { |
| 30 | + const response1 = await page.goto( |
| 31 | + new URL('/test/serverless/integration-with-json-config', withIntegrations.url).href, |
| 32 | + ) |
| 33 | + expect(response1?.status()).toBe(200) |
| 34 | + expect(await response1?.text()).toBe('Hello from /test/serverless/integration-with-json-config') |
| 35 | + |
| 36 | + const response2 = await page.goto( |
| 37 | + new URL('/test/serverless/integration-with-json-config', withIntegrations.url).href, |
| 38 | + ) |
| 39 | + expect(response2?.status()).toBe(200) |
| 40 | + expect(await response2?.text()).toBe('Hello from /test/serverless/integration-with-json-config') |
| 41 | + }) |
| 42 | + |
| 43 | + test('Edge functions', async ({ page, withIntegrations }) => { |
| 44 | + const response1 = await page.goto( |
| 45 | + new URL('/test/edge/integration-in-manifest', withIntegrations.url).href, |
| 46 | + ) |
| 47 | + expect(response1?.status()).toBe(200) |
| 48 | + expect(await response1?.text()).toBe('Hello from /test/edge/integration-in-manifest') |
| 49 | + |
| 50 | + const response2 = await page.goto( |
| 51 | + new URL('/test/edge/integration-not-in-manifest', withIntegrations.url).href, |
| 52 | + ) |
| 53 | + expect(response2?.status()).toBe(200) |
| 54 | + expect(await response2?.text()).toBe('Hello from /test/edge/integration-not-in-manifest') |
| 55 | + }) |
| 56 | +}) |
0 commit comments