0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-02-17 22:44:24 -05:00

[ci] format

This commit is contained in:
Arsh 2024-02-01 07:03:42 +00:00 committed by astrobot-houston
parent 2f6d1faa6f
commit d702d6ae50

View file

@ -30,7 +30,7 @@ describe('Errors', () => {
assert.equal($('p').text().trim(), 'Internal server error');
});
it('generator that throws called in template', async () => {
/** @type {Response} */
const res = await fixture.fetch('/generator');
@ -40,8 +40,8 @@ describe('Errors', () => {
const result = await reader.read();
assert.equal(result.done, done);
if (!done) assert.equal(decoder.decode(result.value), value);
}
await expect({ done: false, value: "<!DOCTYPE html><h1>Astro</h1> 1Internal server error" });
};
await expect({ done: false, value: '<!DOCTYPE html><h1>Astro</h1> 1Internal server error' });
await expect({ done: true });
});
});