Skip to content

Commit

Permalink
Increasing the timeout :(
Browse files Browse the repository at this point in the history
  • Loading branch information
idastambuk committed May 29, 2024
1 parent a4021ea commit 449cb66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cypress/integration/smoke.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ e2e.scenario({
.type(datasource.jsonData.defaultRegion)
.type('{enter}');
e2e().get('label').contains('AWS Secrets Manager').click({ force: true });
cy.wait(2000);
cy.wait(5000);
e2eSelectors.ConfigEditor.ManagedSecret.input().click({ force: true });
e2eSelectors.ConfigEditor.ManagedSecret.input().type(datasource.jsonData.managedSecret.name);
// wait for it to load
e2eSelectors.ConfigEditor.ManagedSecret.testID().contains(datasource.jsonData.managedSecret.name, {timeout: 10000});
e2eSelectors.ConfigEditor.ManagedSecret.testID().contains(datasource.jsonData.managedSecret.name);
e2eSelectors.ConfigEditor.ManagedSecret.input().type('{enter}');
// wait for the secret to be retrieved
e2eSelectors.ConfigEditor.ClusterIDText.testID().should(
Expand Down

0 comments on commit 449cb66

Please sign in to comment.