[ci] yarn format

This commit is contained in:
matthewp 2021-11-19 15:07:28 +00:00 committed by GitHub Actions
parent 4682f8fdce
commit fb4eb080ec

View file

@ -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);
});
});
});