summaryrefslogtreecommitdiff
path: root/packages/integrations/netlify/test/functions/edge-middleware.test.js
blob: ea214f82ae2061dee334dc5225ddb929a2d11b4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { fileURLToPath } from 'url';
import { cli } from './test-utils.js';
import fs from 'fs/promises';
import { expect } from 'chai';

describe('Middleware', () => {
	it('with edge handle file, should successfully build the middleware', async () => {
		const root = new URL('./fixtures/middleware-with-handler-file/', import.meta.url).toString();
		await cli('build', '--root', fileURLToPath(root));
		const contents = await fs.readFile(
			new URL('./.netlify/edge-functions/edgeMiddleware.js', root),
			'utf-8'
		);
		expect(contents.includes('"Hello world"')).to.be.true;
	});

	it('without edge handle file, should successfully build the middleware', async () => {
		const root = new URL('./fixtures/middleware-without-handler-file/', import.meta.url).toString();
		await cli('build', '--root', fileURLToPath(root));
		const contents = await fs.readFile(
			new URL('./.netlify/edge-functions/edgeMiddleware.js', root),
			'utf-8'
		);
		expect(contents.includes('"Hello world"')).to.be.false;
	});
});