Skip to content

Commit 8a06c1f

Browse files
committed
Add time to test.
1 parent 071acad commit 8a06c1f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

cypress/e2e/staff_admin/contact.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,13 @@ describe('ACCEPTANCE: STAFF_ADMIN | CONTACTS', () => {
5252

5353
cy.getCookie('_jwt').then((cookie) => {
5454
cy.createContact(email, given_name, family_name, roles, type, provider_id, Cypress.env('api_url'), cookie.value).then((id) => {
55+
cy.wait(waitTime4)
5556
cy.log('CREATED CONTACT: ' + given_name + ' ' + family_name + ' (' + id + ')');
5657

5758
// Give it a little extra time to process the new contact so that we can search for it.
5859
cy.visit('/contacts');
5960
cy.url().should('include', '/contacts')
60-
cy.wait(waitTime)
61+
cy.wait(waitTime4)
6162

6263
cy.get('input[name="query"]')
6364
.type(family_name + '{enter}', { force: true } )

0 commit comments

Comments
 (0)