0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00

[ci] format

This commit is contained in:
Mark Gaze 2024-06-20 12:31:41 +00:00 committed by astrobot-houston
parent 9056d8dd05
commit e67d7e66a9

View file

@ -72,7 +72,11 @@ const createFixture = () => {
module: ts.ModuleKind.ESNext, module: ts.ModuleKind.ESNext,
}, },
}); });
assert.equal(result.outputText, '', `${path} should be valid TypeScript. Output: ${result.outputText}`); assert.equal(
result.outputText,
'',
`${path} should be valid TypeScript. Output: ${result.outputText}`
);
} catch (error) { } catch (error) {
assert.fail(`${path} is not valid TypeScript. Error: ${error.message}`); assert.fail(`${path} is not valid TypeScript. Error: ${error.message}`);
} }