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)
								),
							},
						},
					},
				});
			}
		}
	};
}
t='13' alt='Gravatar' /> Rishi Raj Jain 3-3/+10 2022-09-26Prevent /undefined catch-all routes in dev (#4873)Gravatar Bjorn Lu 6-9/+66 2022-09-26fix: 🐛 BUG: class:list directive adding class attribute when undefined (#4...Gravatar Rishi Raj Jain 2-2/+9 2022-09-26docs: Standardize common integration READMEs (#4874)Gravatar Jake Strawn 7-6/+66 2022-09-26docs: Update references to support channel in Discord. (#4872)Gravatar Jake Strawn 12-12/+12 2022-09-26[ci] formatGravatar bluwy 1-1/+1 2022-09-26fix: "chunks" directory appears in build output, if custom modules are import...Gravatar Rishi Raj Jain 2-6/+34 2022-09-23[ci] formatGravatar matthewp 1-1/+1 2022-09-23Define toStringTag another way (#4855)Gravatar Matthew Phillips 2-4/+12 2022-09-23update SSR example to match recent change on Astro API Context (#4854)Gravatar Steven Yung 2-4/+6 2022-09-23[ci] update lockfile (#4852)Gravatar Fred K. Bot 1-373/+402