0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-27 22:19:04 -05:00

[ci] format

This commit is contained in:
natemoo-re 2023-10-12 14:39:45 +00:00 committed by astrobot-houston
parent 391729686b
commit 45ae41a457
2 changed files with 16 additions and 16 deletions

View file

@ -60,27 +60,27 @@ export function createAPIContext({
if (clientAddressSymbol in request) {
return Reflect.get(request, clientAddressSymbol) as string;
}
if (adapterName) {
throw new AstroError({
...AstroErrorData.ClientAddressNotAvailable,
message: AstroErrorData.ClientAddressNotAvailable.message(adapterName),
});
} else {
throw new AstroError(AstroErrorData.StaticClientAddressNotAvailable);
}
if (adapterName) {
throw new AstroError({
...AstroErrorData.ClientAddressNotAvailable,
message: AstroErrorData.ClientAddressNotAvailable.message(adapterName),
});
} else {
throw new AstroError(AstroErrorData.StaticClientAddressNotAvailable);
}
},
get locals() {
let locals = Reflect.get(request, clientLocalsSymbol)
let locals = Reflect.get(request, clientLocalsSymbol);
if (locals === undefined) {
locals = {}
Reflect.set(request, clientLocalsSymbol, locals)
locals = {};
Reflect.set(request, clientLocalsSymbol, locals);
}
if (typeof locals !== 'object') {
throw new AstroError(AstroErrorData.LocalsNotAnObject);
}
return locals;
},
// We define a custom property, so we can check the value passed to locals

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',
});