summaryrefslogtreecommitdiff
path: root/packages/integrations/netlify/test/functions/test-utils.js
blob: bed18796240734638dbb56c134f6189d846723cc (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
27
28
29
30
31
32
33
34
// @ts-check
import { fileURLToPath } from 'node:url';

export * from '../../../../astro/test/test-utils.js';

/**
 *
 * @returns {import('../../../../astro/dist/types/@types/astro').AstroIntegration}
 */
export function testIntegration({ setEntryPoints } = {}) {
	return {
		name: '@astrojs/netlify/test-integration',
		hooks: {
			'astro:config:setup': ({ updateConfig }) => {
				updateConfig({
					vite: {
						resolve: {
							alias: {
								'@astrojs/netlify/netlify-functions.js': fileURLToPath(
									new URL('../../dist/netlify-functions.js', import.meta.url)
								),
							},
						},
					},
				});
			},
			'astro:build:ssr': ({ entryPoints }) => {
				if (entryPoints.size) {
					setEntryPoints(entryPoints);
				}
			},
		},
	};
}