diff options
Diffstat (limited to '')
-rw-r--r-- | packages/astro/test/astro-scripts.test.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/astro/test/astro-scripts.test.js b/packages/astro/test/astro-scripts.test.js index bda290243..90dba2997 100644 --- a/packages/astro/test/astro-scripts.test.js +++ b/packages/astro/test/astro-scripts.test.js @@ -51,7 +51,10 @@ describe('Scripts (hoisted and not)', () => { expect(inlineEntryJS).to.be.ok; // test 4: Inline imported JS is included - expect(inlineEntryJS).to.contain("I AM IMPORTED INLINE", "The inline imported JS is included in the bundle"); + expect(inlineEntryJS).to.contain( + 'I AM IMPORTED INLINE', + 'The inline imported JS is included in the bundle' + ); }); it('External page builds the hoisted scripts to a single bundle', async () => { |