We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be234f7 commit 3b119a5Copy full SHA for 3b119a5
src/common/crypto/seal.spec.ts
@@ -127,7 +127,9 @@ describe('seal', () => {
127
const sealed = await sealData(data, { password });
128
129
// Verify the format matches iron-session's expected output
130
- expect(sealed).toMatch(/^Fe26\.2\*1\*[^*]+\*[^*]+\*[^*]+\*\*[^*]+\*[^*]+~2$/);
+ expect(sealed).toMatch(
131
+ /^Fe26\.2\*1\*[^*]+\*[^*]+\*[^*]+\*\*[^*]+\*[^*]+~2$/,
132
+ );
133
134
const unsealed = await unsealData<typeof data>(sealed, { password });
135
expect(unsealed).toEqual(data);
0 commit comments