Skip to content

Commit 3b119a5

Browse files
committed
formatting
1 parent be234f7 commit 3b119a5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/common/crypto/seal.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,9 @@ describe('seal', () => {
127127
const sealed = await sealData(data, { password });
128128

129129
// Verify the format matches iron-session's expected output
130-
expect(sealed).toMatch(/^Fe26\.2\*1\*[^*]+\*[^*]+\*[^*]+\*\*[^*]+\*[^*]+~2$/);
130+
expect(sealed).toMatch(
131+
/^Fe26\.2\*1\*[^*]+\*[^*]+\*[^*]+\*\*[^*]+\*[^*]+~2$/,
132+
);
131133

132134
const unsealed = await unsealData<typeof data>(sealed, { password });
133135
expect(unsealed).toEqual(data);

0 commit comments

Comments
 (0)