- Linting (ESLint): Apply coding standards

- Testing (Refactoring): Abstract out to helper file functions for approving local storage and opening the main menu
- Docs (CHANGES): Update
- npm: Update devDeps; update nested deps for security audit
This commit is contained in:
Brett Zamir
2019-03-16 12:30:23 +08:00
parent 5691b7b1e7
commit dade2a7b37
28 changed files with 521 additions and 537 deletions

8
test/ui-test-helper.js Normal file
View File

@@ -0,0 +1,8 @@
export const approveStorage = (t) => {
return t
.click('#dialog_buttons > input[type=button][value=OK]');
};
export const approveStorageAndOpenMainMenu = (t) => {
return approveStorage(t).click('#main_icon');
};