@onehat/ui 0.3.345 → 0.3.346

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onehat/ui",
3
- "version": "0.3.345",
3
+ "version": "0.3.346",
4
4
  "description": "Base UI for OneHat apps",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -138,7 +138,7 @@ export function setComboValue(selectors, value) {
138
138
  .wait('@getWaiter'); // allow dropdown to load
139
139
 
140
140
  cy.get(field)
141
- .wait(1500) // render
141
+ .wait(2000) // render
142
142
  .type('{downarrow}')
143
143
  .wait(1000) // allow time for selection
144
144
 
@@ -179,7 +179,7 @@ export function setTagValue(selectors, value) {
179
179
  .wait('@getWaiter'); // allow dropdown to load
180
180
 
181
181
  cy.get(field)
182
- .wait(1500) // render
182
+ .wait(2000) // render
183
183
  .type('{downarrow}')
184
184
  .wait(1000); // allow time for selection
185
185
  });
@@ -23,7 +23,7 @@ export function login(loginId = null, password = null) {
23
23
  baseDir = Cypress.env('baseDir');
24
24
  cy.visit(baseUrl + baseDir + 'login')
25
25
  .then(() => {
26
- getDomNode('loginId').clear();
26
+ getDomNode('loginId', { timeout: 10000 }).clear();
27
27
  getDomNode('loginId').type(loginId);
28
28
 
29
29
  getDomNode('password').clear();