-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependencies, fix issue with dev server mode not working, rena…
…me DatabaseService to DatabaseGateway
- Loading branch information
1 parent
446c62f
commit 361deb6
Showing
17 changed files
with
3,757 additions
and
3,304 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v20.15.0 | ||
v20.16.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ describe('processProviderCallback', () => { | |
|
||
// Create test auth context with a test user in the db | ||
ctx = await createTestAuthContext(); | ||
const user = await ctx.database.createUser('[email protected]'); | ||
const user = await ctx.db.createUser('[email protected]'); | ||
if (!user) { | ||
expect.fail('error creating test user'); | ||
} | ||
|
@@ -37,7 +37,6 @@ describe('processProviderCallback', () => { | |
aal: 'ignored', | ||
}); | ||
} else if (request.url.includes('openid_connect/authorize')) { | ||
console.error('********'); | ||
throw new Error('authorize endpoint: todo'); | ||
} | ||
throw new Error(`unexpected url: ${request.url}`); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -119,11 +119,11 @@ const setUpTest = async (sessionExpirationDate: Date) => { | |
setUserSession: vi.fn(), | ||
}; | ||
const ctx = await createTestAuthContext(mocks); | ||
const user = await ctx.database.createUser('[email protected]'); | ||
const user = await ctx.db.createUser('[email protected]'); | ||
if (!user) { | ||
expect.fail('error creating test user'); | ||
} | ||
const sessionId = await ctx.database.createSession({ | ||
const sessionId = await ctx.db.createSession({ | ||
id: randomUUID(), | ||
expiresAt: addOneDay(sessionExpirationDate), | ||
sessionToken: 'my-token', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.