30 lines
610 B
JavaScript
30 lines
610 B
JavaScript
|
// @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)
|
||
|
),
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
}
|