summaryrefslogtreecommitdiff
path: root/packages/integrations/netlify/test/static/test-utils.js
blob: 02b5d2ad90b7c064a1c7a3493e937475586d37eb (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
// @ts-check
import { fileURLToPath } from 'url';

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

/**
 *
 * @returns {import('../../../../astro/dist/types/@types/astro').AstroIntegration}
 */
export function testIntegration() {
	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)
								),
							},
						},
					},
				});
			},
		},
	};
}