From e1b685bb5d7a29e13234c6bb65154930312eaad9 Mon Sep 17 00:00:00 2001 From: Jernej Pregelj Date: Fri, 2 Aug 2019 11:58:24 +0200 Subject: [PATCH] add wait after tests --- cypress/integration/3_consume.spec.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cypress/integration/3_consume.spec.js b/cypress/integration/3_consume.spec.js index ddb1ef9..6377116 100644 --- a/cypress/integration/3_consume.spec.js +++ b/cypress/integration/3_consume.spec.js @@ -28,5 +28,9 @@ context('Consume', () => { 'not.contain', '. Sorry about that, can you try again?' ) + // eslint-disable-next-line + cy.wait(10000) + // wait for file to download before closing browser + // to prevent alert poping up }) })