- 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:
8
test/ui-test-helper.js
Normal file
8
test/ui-test-helper.js
Normal 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');
|
||||
};
|
||||
Reference in New Issue
Block a user