Skip to content

Commit

Permalink
chore: synchronize workspaces
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Nov 14, 2024
1 parent 448150f commit a5a37c9
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions packages/nextjs/src/utils/__snapshots__/utils.test.ts.snap
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`processSetCookieHeaders should respect forwarded headers 1`] = `
[
"sessionid=abc123; Domain=ory.sh; Path=/; HttpOnly; Secure",
]
`;

exports[`processSetCookieHeaders should respect regular headers 1`] = `
[
"sessionid=abc123; Domain=ory.sh; Path=/; HttpOnly",
]
`;

exports[`processSetCookieHeaders supports insecure 1`] = `
[
"sessionid=abc123; Domain=ory.sh; Path=/; HttpOnly",
]
`;

exports[`processSetCookieHeaders supports multiple cookies comma separated 1`] = `
[
"sessionid1=abc123; Domain=ory.sh; Path=/; HttpOnly",
"sessionid2=123abc; Domain=ory.sh; Path=/abc; HttpOnly",
]
`;

exports[`processSetCookieHeaders supports multiple cookies in record 1`] = `
[
"sessionid1=abc123; Domain=ory.sh; Path=/; HttpOnly",
"sessionid2=123abc; Domain=ory.sh; Path=/abc; HttpOnly",
]
`;

0 comments on commit a5a37c9

Please sign in to comment.