-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
117e3f4
commit a54f429
Showing
9 changed files
with
37 additions
and
18 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
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 |
---|---|---|
|
@@ -15,7 +15,10 @@ describe('Favorite routes', () => { | |
let pack: Pack; | ||
|
||
beforeAll(async () => { | ||
const executionCtx = {} as ExecutionContext; | ||
const executionCtx: ExecutionContext = { | ||
waitUntil: () => {}, | ||
passThroughOnException: () => {}, | ||
}; | ||
caller = await setupTest(env, executionCtx); | ||
user = (await userClass.create({ | ||
email: '[email protected]', | ||
|
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 |
---|---|---|
|
@@ -40,7 +40,10 @@ describe('Pack routes', () => { | |
let owner: User; | ||
|
||
beforeAll(async () => { | ||
executionCtx = {} as ExecutionContext; | ||
const executionCtx: ExecutionContext = { | ||
waitUntil: () => {}, | ||
passThroughOnException: () => {}, | ||
}; | ||
caller = await setupTest(env, executionCtx); | ||
owner = (await userClass.create({ | ||
email: '[email protected]', | ||
|
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 |
---|---|---|
|
@@ -17,7 +17,10 @@ describe('Trip Routes', () => { | |
let owner: User; | ||
|
||
beforeAll(async () => { | ||
const executionCtx = {} as ExecutionContext; | ||
const executionCtx: ExecutionContext = { | ||
waitUntil: () => {}, | ||
passThroughOnException: () => {}, | ||
}; | ||
caller = await setupTest(env, executionCtx); | ||
owner = (await userClass.create({ | ||
email: '[email protected]', | ||
|