0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-23 21:53:55 -05:00

[ci] format

This commit is contained in:
matthewp 2022-09-14 17:54:33 +00:00 committed by fredkbot
parent f1efd88dde
commit 5e690065f7

View file

@ -159,9 +159,7 @@ describe('Scripts (hoisted and not)', () => {
let found = 0; let found = 0;
let moduleScripts = $('[type=module]'); let moduleScripts = $('[type=module]');
moduleScripts.each((i, el) => { moduleScripts.each((i, el) => {
if ( if ($(el).attr('src').includes('?astro&type=script&index=0&lang.ts')) {
$(el).attr('src').includes('?astro&type=script&index=0&lang.ts')
) {
found++; found++;
} }
}); });