diff options
author | 2022-05-24 15:35:08 +0000 | |
---|---|---|
committer | 2022-05-24 15:35:08 +0000 | |
commit | 752a108808410c4797319688658cf17fe3c4a3b8 (patch) | |
tree | 543830ec807908fd40f8bf4a425672ab51da662a /packages/astro/test/astro-scripts.test.js | |
parent | 463a1c214779e0558bcd99c30294e1a14a97232e (diff) | |
download | astro-752a108808410c4797319688658cf17fe3c4a3b8.tar.gz astro-752a108808410c4797319688658cf17fe3c4a3b8.tar.zst astro-752a108808410c4797319688658cf17fe3c4a3b8.zip |
[ci] format
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 () => { |