From 8bdcfb06c5fcdfb24acc2eb757ffe91bf23f4f45 Mon Sep 17 00:00:00 2001 From: Gabriel Dutra Date: Tue, 22 Jan 2019 04:52:23 -0200 Subject: [PATCH] add wait time before percy data source page snapshot (#3320) --- cypress/integration/data-source/create_data_source_spec.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cypress/integration/data-source/create_data_source_spec.js b/cypress/integration/data-source/create_data_source_spec.js index 1ae4be039..e286a334e 100644 --- a/cypress/integration/data-source/create_data_source_spec.js +++ b/cypress/integration/data-source/create_data_source_spec.js @@ -14,6 +14,8 @@ describe('Create Data Source', () => { cy.getByTestId('Database Name').type('postgres{enter}'); cy.contains('Saved.'); + + cy.wait(1000); cy.percySnapshot('Create Data Source page'); }); });