mirror of
https://github.com/withastro/astro.git
synced 2025-01-27 22:19:04 -05:00
[ci] format
This commit is contained in:
parent
391729686b
commit
45ae41a457
2 changed files with 16 additions and 16 deletions
|
@ -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
|
||||
|
|
|
@ -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',
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue