Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewp authored and astrobot-houston committed May 3, 2023
1 parent 0883fd4 commit 6916e5c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/astro/src/vite-plugin-astro-server/response.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export async function writeWebResponse(res: http.ServerResponse, webResponse: Re

// Attach any set-cookie headers added via Astro.cookies.set()
const setCookieHeaders = Array.from(getSetCookiesFromResponse(webResponse));
if(setCookieHeaders.length) {
if (setCookieHeaders.length) {
// Always use `res.setHeader` because headers.append causes them to be concatenated.
res.setHeader('set-cookie', setCookieHeaders);
}
Expand Down
10 changes: 5 additions & 5 deletions packages/astro/test/ssr-api-route.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ describe('API routes in SSR', () => {
});

it('Can set multiple headers of the same type', async () => {
const response = await new Promise(resolve => {
const response = await new Promise((resolve) => {
let { port } = devServer.address;
let host = 'localhost';
let socket = new net.Socket();
Expand All @@ -107,8 +107,8 @@ describe('API routes in SSR', () => {
});

let rawResponse = '';
socket.setEncoding('utf-8')
socket.on('data', chunk => {
socket.setEncoding('utf-8');
socket.on('data', (chunk) => {
rawResponse += chunk.toString();
socket.destroy();
});
Expand All @@ -119,11 +119,11 @@ describe('API routes in SSR', () => {

let count = 0;
let exp = /set-cookie\:/g;
while(exp.exec(response)) {
while (exp.exec(response)) {
count++;
}

expect(count).to.equal(2, 'Found two seperate set-cookie response headers')
expect(count).to.equal(2, 'Found two seperate set-cookie response headers');
});
});
});

0 comments on commit 6916e5c

Please sign in to comment.