summaryrefslogtreecommitdiff
path: root/packages/integrations/netlify/test/functions/test-utils.js
blob: 19cd7ef663e08c805b25f5ca49dd421056ab25aa (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)
								),
							},
						},
					},
				});
			}
		}
	};
}