Improve clearSessionStorage timings 57/104957/1
authorIttay Stern <ittay.stern@att.com>
Thu, 2 Apr 2020 07:33:13 +0000 (10:33 +0300)
committerIttay Stern <ittay.stern@att.com>
Thu, 2 Apr 2020 07:35:17 +0000 (10:35 +0300)
Hopefully it will solve the flakiness of test named "upgrade vfmodule
when upgraded already service, vnf and brother vfmodule" that fails on
missing test_api value which is set by setTestApiParamToGR()

Issue-ID: VID-647

Change-Id: I51ba95edf3a7535dec2715054f7f10564a7debe3
Signed-off-by: Ittay Stern <ittay.stern@att.com>
vid-webpack-master/cypress/integration/iFrames/viewEditUpgradeVfModule.e2e.ts
vid-webpack-master/cypress/support/application/application.session.actions.ts

index 027901f..ac36f67 100644 (file)
@@ -134,10 +134,11 @@ describe('View Edit Page: Upgrade VFModule', function () {
   describe('More UI test', () => {
 
     beforeEach(() => {
-      cy.clearSessionStorage();
-      cy.setTestApiParamToGR();
-      cy.initVidMock();
-      cy.login();
+      cy.clearSessionStorage().then(() => {
+        cy.setTestApiParamToGR();
+        cy.initVidMock();
+        cy.login();
+      });
     });
 
     afterEach(() => {
index 9126ae1..99d5d86 100644 (file)
@@ -25,8 +25,8 @@ function getReduxState(): Chainable<any> {
   });
 }
 
-function clearSessionStorage() : void {
-  cy.window().then((win) => {
+function clearSessionStorage() : Cypress.Chainable<any> {
+  return cy.window().then((win) => {
     win.sessionStorage.clear();
   });
 }