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-03-04 11:45:33 +00:00 committed by astrobot-houston
parent 9ba3e2605d
commit 6407897643

View file

@ -273,8 +273,8 @@ describe('Astro.redirect', () => {
it('Outputs redirect HTML for user routes that return a redirect response', async () => {
let secretHtml = await fixture.readFile('/secret/index.html');
assert.equal(secretHtml.includes("Redirecting from <code>/secret/</code>"), true);
assert.equal(secretHtml.includes("to <code>/login</code>"), true);
assert.equal(secretHtml.includes('Redirecting from <code>/secret/</code>'), true);
assert.equal(secretHtml.includes('to <code>/login</code>'), true);
});
});
});