diff options
author | 2022-09-14 17:54:33 +0000 | |
---|---|---|
committer | 2022-09-14 17:54:33 +0000 | |
commit | 5e690065f768579987eb75f48663d71caa2a8e2a (patch) | |
tree | 481e80f7d01f1afb1621fe42b03e831702d9c4a5 | |
parent | f1efd88ddefe078f64901b1754ebfbaf65d36b51 (diff) | |
download | astro-5e690065f768579987eb75f48663d71caa2a8e2a.tar.gz astro-5e690065f768579987eb75f48663d71caa2a8e2a.tar.zst astro-5e690065f768579987eb75f48663d71caa2a8e2a.zip |
[ci] format
-rw-r--r-- | packages/astro/test/astro-scripts.test.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/packages/astro/test/astro-scripts.test.js b/packages/astro/test/astro-scripts.test.js index 4eaa29a6a..062b3c044 100644 --- a/packages/astro/test/astro-scripts.test.js +++ b/packages/astro/test/astro-scripts.test.js @@ -159,9 +159,7 @@ describe('Scripts (hoisted and not)', () => { let found = 0; let moduleScripts = $('[type=module]'); moduleScripts.each((i, el) => { - if ( - $(el).attr('src').includes('?astro&type=script&index=0&lang.ts') - ) { + if ($(el).attr('src').includes('?astro&type=script&index=0&lang.ts')) { found++; } }); |