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

restarting dev server between each error test

This commit is contained in:
Tony Sullivan 2022-06-16 12:49:48 -05:00
parent 81104a9335
commit 49e4453acc

View file

@ -21,11 +21,11 @@ describe('Error display', () => {
describe('Astro', async () => { describe('Astro', async () => {
let devServer; let devServer;
before(async () => { beforeEach(async () => {
devServer = await fixture.startDevServer(); devServer = await fixture.startDevServer();
}); });
after(async () => { afterEach(async () => {
await devServer.stop(); await devServer.stop();
}); });