DEV: Add acceptance tests for bookmarks with reminders (#9592)

This commit is contained in:
Martin Brennan
2020-04-30 14:58:26 +10:00
committed by GitHub
parent d6df92b074
commit 10f9f295dc
5 changed files with 177 additions and 17 deletions

View File

@ -36,6 +36,11 @@ export function logIn() {
User.resetCurrent(currentUser());
}
// Note: Only use if `loggedIn: true` has been used in an acceptance test
export function loggedInUser() {
return User.current();
}
const Plugin = $.fn.modal;
const Modal = Plugin.Constructor;