0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-04-07 23:41:43 -05:00

[ci] format

This commit is contained in:
natemoo-re 2023-10-12 14:39:45 +00:00 committed by astrobot-houston
parent 406ed0829e
commit e8ab406805

View file

@ -37,7 +37,7 @@ describe('API routes', () => {
url: '/from-node-middleware',
});
handler(req, res, undefined, "locals");
handler(req, res, undefined, 'locals');
req.send();
await done;
@ -46,7 +46,7 @@ describe('API routes', () => {
it('Can use locals added by astro middleware', async () => {
const { handler } = await import('./fixtures/locals/dist/server/entry.mjs');
const { req, res, text } = createRequestAndResponse({
url: '/from-astro-middleware',
});