-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding more tests - leveraged mocks to ensure that calls to open url or create popup were happening at the appropriate times
- Loading branch information
Abby Wheelis
committed
Nov 3, 2023
1 parent
87de6c2
commit dcf35fa
Showing
3 changed files
with
80 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,19 @@ | ||
export const mockLogger = () => { | ||
window['Logger'] = { log: console.log }; | ||
}; | ||
|
||
let alerts = []; | ||
|
||
export const mockAlert = () => { | ||
window['alert'] = (message) => { | ||
alerts.push(message); | ||
}; | ||
}; | ||
|
||
export const clearAlerts = () => { | ||
alerts = []; | ||
}; | ||
|
||
export const getAlerts = () => { | ||
return alerts; | ||
}; |
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