Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
LoicPoullain committed May 27, 2022
1 parent 78750f2 commit 73f07e6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ describe('Feature: Using social auth with sessions', () => {
});

// Known user
const ctx = new Context({
const ctx = new Context<User>({
query: {
code: 'known_user'
}
Expand All @@ -126,7 +126,7 @@ describe('Feature: Using social auth with sessions', () => {
deepStrictEqual(ctx.session.userId, user.id);

// Unknown user
const ctx2 = new Context({
const ctx2 = new Context<User>({
query: {
code: 'unknown_user'
}
Expand Down

0 comments on commit 73f07e6

Please sign in to comment.