diff options
author | 2021-11-19 15:07:28 +0000 | |
---|---|---|
committer | 2021-11-19 15:07:28 +0000 | |
commit | fb4eb080ec06406891033a8fdb37847c1b91d0d1 (patch) | |
tree | 30abada183621e19f912c4b9b7ef43575b72c1d9 | |
parent | 4682f8fdce27d0601be01603956908d8384a6ec0 (diff) | |
download | astro-fb4eb080ec06406891033a8fdb37847c1b91d0d1.tar.gz astro-fb4eb080ec06406891033a8fdb37847c1b91d0d1.tar.zst astro-fb4eb080ec06406891033a8fdb37847c1b91d0d1.zip |
[ci] yarn format
-rw-r--r-- | packages/astro/test/debug-component.test.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/astro/test/debug-component.test.js b/packages/astro/test/debug-component.test.js index 31a0ff987..d4c230303 100644 --- a/packages/astro/test/debug-component.test.js +++ b/packages/astro/test/debug-component.test.js @@ -9,7 +9,7 @@ describe('<Debug />', () => { if (isMacOS) return; /** @type {import('./test-utils').Fixture} */ - let fixture + let fixture; /** @type {import('./test-utils').DevServer} */ let devServer; @@ -19,11 +19,11 @@ describe('<Debug />', () => { }); after(async () => { - devServer && await devServer.stop(); + devServer && (await devServer.stop()); }); it('Works in markdown pages', async () => { const response = await fixture.fetch('/posts/first'); expect(response.status).to.equal(200); }); -});
\ No newline at end of file +}); |