summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/astro/test/build-concurrency.test.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/astro/test/build-concurrency.test.js b/packages/astro/test/build-concurrency.test.js
index 5f99eefeb..87a0b4912 100644
--- a/packages/astro/test/build-concurrency.test.js
+++ b/packages/astro/test/build-concurrency.test.js
@@ -14,16 +14,16 @@ describe('Building with concurrency > 1', () => {
},
});
});
-
+
it('Errors and exits', async () => {
- let built = false
+ let built = false;
try {
await fixture.build();
- built = true
+ built = true;
} catch (err) {
- assert.match(err.message, /This is a test/)
+ assert.match(err.message, /This is a test/);
}
-
+
assert.equal(built, false, 'Build should not complete');
});
});