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:
parent
81104a9335
commit
49e4453acc
1 changed files with 2 additions and 2 deletions
|
@ -21,11 +21,11 @@ describe('Error display', () => {
|
|||
describe('Astro', async () => {
|
||||
let devServer;
|
||||
|
||||
before(async () => {
|
||||
beforeEach(async () => {
|
||||
devServer = await fixture.startDevServer();
|
||||
});
|
||||
|
||||
after(async () => {
|
||||
afterEach(async () => {
|
||||
await devServer.stop();
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue