Skip to content

Commit ca6894a

Browse files
ascorbicastrobot-houston
authored andcommitted
[ci] format
1 parent 573d188 commit ca6894a

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

packages/astro/test/units/sessions/astro-session.test.js

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -156,10 +156,14 @@ describe('AstroSession - Session Regeneration', () => {
156156
await session[PERSIST_SYMBOL]();
157157

158158
// Create a new session that reads from the same storage
159-
const newSession = createSession(defaultConfig, {
160-
...defaultMockCookies,
161-
get: () => ({ value: session.sessionID }),
162-
}, mockStorage);
159+
const newSession = createSession(
160+
defaultConfig,
161+
{
162+
...defaultMockCookies,
163+
get: () => ({ value: session.sessionID }),
164+
},
165+
mockStorage,
166+
);
163167

164168
const value = await newSession.get('user');
165169
assert.equal(value, 'alice');

0 commit comments

Comments
 (0)