diff --git a/packages/astro/test/astro-sync.test.js b/packages/astro/test/astro-sync.test.js index 835929ff3c14..85f6551e6668 100644 --- a/packages/astro/test/astro-sync.test.js +++ b/packages/astro/test/astro-sync.test.js @@ -72,7 +72,11 @@ const createFixture = () => { module: ts.ModuleKind.ESNext, }, }); - assert.equal(result.outputText, '', `${path} should be valid TypeScript. Output: ${result.outputText}`); + assert.equal( + result.outputText, + '', + `${path} should be valid TypeScript. Output: ${result.outputText}` + ); } catch (error) { assert.fail(`${path} is not valid TypeScript. Error: ${error.message}`); }