0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-23 21:53:55 -05:00

[ci] format

This commit is contained in:
matthewp 2022-04-01 17:33:12 +00:00 committed by GitHub Actions
parent b4ad11b569
commit 84f23d677a

View file

@ -41,7 +41,7 @@ describe('Integration buildConfig hook', () => {
}, },
}); });
}, },
'astro:build:start': ({ buildConfig }) => { 'astro:build:start': ({ buildConfig }) => {
buildConfig.server = new URL('./dist/.root/server/', _config.projectRoot); buildConfig.server = new URL('./dist/.root/server/', _config.projectRoot);
buildConfig.client = new URL('./dist/.root/client/', _config.projectRoot); buildConfig.client = new URL('./dist/.root/client/', _config.projectRoot);
}, },
@ -67,5 +67,5 @@ describe('Integration buildConfig hook', () => {
it('Puts the server entry into the server folder', async () => { it('Puts the server entry into the server folder', async () => {
let data = await fixture.readFile('/.root/server/entry.mjs'); let data = await fixture.readFile('/.root/server/entry.mjs');
expect(data).to.not.be.undefined; expect(data).to.not.be.undefined;
}) });
}); });