diff options
author | 2022-03-09 22:39:48 +0000 | |
---|---|---|
committer | 2022-03-09 22:39:48 +0000 | |
commit | 658a92915d27b10c34ad94003c6344cd37f093d7 (patch) | |
tree | 28de6556e72fd15dfe7df423ce5650ee0ee42453 | |
parent | 2906110c04039d5f5bd0e5fb917449e6b001e380 (diff) | |
download | astro-658a92915d27b10c34ad94003c6344cd37f093d7.tar.gz astro-658a92915d27b10c34ad94003c6344cd37f093d7.tar.zst astro-658a92915d27b10c34ad94003c6344cd37f093d7.zip |
[ci] format
-rw-r--r-- | packages/astro/test/legacy-build.test.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/astro/test/legacy-build.test.js b/packages/astro/test/legacy-build.test.js index 1b3224493..20b8dcf9c 100644 --- a/packages/astro/test/legacy-build.test.js +++ b/packages/astro/test/legacy-build.test.js @@ -9,7 +9,7 @@ describe('Legacy Build', () => { fixture = await loadFixture({ projectRoot: './fixtures/legacy-build/', }); - await fixture.build({buildOptions: {legacyBuild: true}}); + await fixture.build({ buildOptions: { legacyBuild: true } }); }); describe('build', () => { @@ -18,6 +18,5 @@ describe('Legacy Build', () => { const $ = cheerio.load(html); expect($('title').text()).to.equal('Demo app'); }); - }); }); |