diff --git a/packages/astro/src/core/dev/dev.ts b/packages/astro/src/core/dev/dev.ts index b54074c8ea..606d292e65 100644 --- a/packages/astro/src/core/dev/dev.ts +++ b/packages/astro/src/core/dev/dev.ts @@ -92,7 +92,7 @@ export default async function dev(inlineConfig: AstroInlineConfig): Promise { /** @type {import('./test-utils.js').Fixture} */ @@ -51,7 +51,7 @@ describe('--mode', () => { it('writes data store file in the correct location', async () => { assert.ok(existsSync(prodDataStoreFile)); - }) + }); }); describe('build --mode testing --devOutput', () => { @@ -68,12 +68,12 @@ describe('--mode', () => { assert.equal($('#env-prod').text(), 'false'); assert.equal($('#env-title').text(), ''); assert.equal($('#env-astro-title').text(), 'unset'); - assert.ok + assert.ok; }); it('writes data store file in the correct location', async () => { assert.ok(existsSync(prodDataStoreFile)); - }) + }); }); describe('build --mode staging', () => { @@ -94,8 +94,7 @@ describe('--mode', () => { it('writes data store file in the correct location', async () => { assert.ok(existsSync(prodDataStoreFile)); - }) - + }); }); describe('dev', () => { @@ -123,7 +122,7 @@ describe('--mode', () => { it('writes data store file in the correct location', async () => { assert.ok(existsSync(devDataStoreFile)); - }) + }); }); describe('dev --mode develop', () => { @@ -151,7 +150,6 @@ describe('--mode', () => { it('writes data store file in the correct location', async () => { assert.ok(existsSync(devDataStoreFile)); - }) - + }); }); });