summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Tony Sullivan <tony.f.sullivan@outlook.com> 2022-06-16 12:56:57 -0500
committerGravatar Tony Sullivan <tony.f.sullivan@outlook.com> 2022-06-16 12:56:57 -0500
commit493441f57b304b298c1869e09875a27ba6a4a438 (patch)
treee8f243503df81196b12d90aae9e33efb36715498
parent49e4453acc244198579b7a69ce7ed20916cc0be2 (diff)
downloadastro-493441f57b304b298c1869e09875a27ba6a4a438.tar.gz
astro-493441f57b304b298c1869e09875a27ba6a4a438.tar.zst
astro-493441f57b304b298c1869e09875a27ba6a4a438.zip
Revert "restarting dev server between each error test"
This reverts commit 49e4453acc244198579b7a69ce7ed20916cc0be2.
-rw-r--r--packages/astro/test/errors.test.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/astro/test/errors.test.js b/packages/astro/test/errors.test.js
index e7cdfe924..78edcc4da 100644
--- a/packages/astro/test/errors.test.js
+++ b/packages/astro/test/errors.test.js
@@ -21,11 +21,11 @@ describe('Error display', () => {
describe('Astro', async () => {
let devServer;
- beforeEach(async () => {
+ before(async () => {
devServer = await fixture.startDevServer();
});
- afterEach(async () => {
+ after(async () => {
await devServer.stop();
});