summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
Diffstat (limited to 'packages')
-rw-r--r--packages/astro/test/astro-scripts.test.js4
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++;
}
});