summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Armand Philippot <florian-lefebvre@users.noreply.github.com> 2025-05-13 19:12:52 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2025-05-13 19:12:52 +0000
commit68d8c4e10c65f9eaac3a8d91c12b3fc9cadf807c (patch)
tree759c3a84c7df021c43395607c33f380dff070912
parentdebd69daa73b01fe8db35db538811336704b9d68 (diff)
downloadastro-68d8c4e10c65f9eaac3a8d91c12b3fc9cadf807c.tar.gz
astro-68d8c4e10c65f9eaac3a8d91c12b3fc9cadf807c.tar.zst
astro-68d8c4e10c65f9eaac3a8d91c12b3fc9cadf807c.zip
[ci] format
-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');
});
});