summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar matthewp <matthewp@users.noreply.github.com> 2022-04-01 17:33:12 +0000
committerGravatar GitHub Actions <actions@github.com> 2022-04-01 17:33:12 +0000
commit84f23d677a7ee05a32b70e9e8b66a0cc0f21feb8 (patch)
tree4cde2a2cb0c3a987946a400a125700c1669ec244
parentb4ad11b5690f6835afbd6cd8efdb2d72fa6df9a0 (diff)
downloadastro-84f23d677a7ee05a32b70e9e8b66a0cc0f21feb8.tar.gz
astro-84f23d677a7ee05a32b70e9e8b66a0cc0f21feb8.tar.zst
astro-84f23d677a7ee05a32b70e9e8b66a0cc0f21feb8.zip
[ci] format
-rw-r--r--packages/astro/test/ssr-adapter-build-config.test.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/astro/test/ssr-adapter-build-config.test.js b/packages/astro/test/ssr-adapter-build-config.test.js
index a6feab8cd..bda7752ff 100644
--- a/packages/astro/test/ssr-adapter-build-config.test.js
+++ b/packages/astro/test/ssr-adapter-build-config.test.js
@@ -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.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 () => {
let data = await fixture.readFile('/.root/server/entry.mjs');
expect(data).to.not.be.undefined;
- })
+ });
});