diff options
author | Ittay Stern <ittay.stern@att.com> | 2020-04-02 10:33:13 +0300 |
---|---|---|
committer | Ittay Stern <ittay.stern@att.com> | 2020-04-02 10:35:17 +0300 |
commit | 88fcc332e4073b1c33c97d2a9cd81cb492f77481 (patch) | |
tree | 8c5e26fba39ef219d5974c917c4af3b2a117ca61 /vid-webpack-master/cypress/integration/iFrames/viewEditUpgradeVfModule.e2e.ts | |
parent | 22517acace92de50b38d0943ec8307d90068c768 (diff) |
Improve clearSessionStorage timings
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>
Diffstat (limited to 'vid-webpack-master/cypress/integration/iFrames/viewEditUpgradeVfModule.e2e.ts')
-rw-r--r-- | vid-webpack-master/cypress/integration/iFrames/viewEditUpgradeVfModule.e2e.ts | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/vid-webpack-master/cypress/integration/iFrames/viewEditUpgradeVfModule.e2e.ts b/vid-webpack-master/cypress/integration/iFrames/viewEditUpgradeVfModule.e2e.ts index 027901f0f..ac36f6771 100644 --- a/vid-webpack-master/cypress/integration/iFrames/viewEditUpgradeVfModule.e2e.ts +++ b/vid-webpack-master/cypress/integration/iFrames/viewEditUpgradeVfModule.e2e.ts @@ -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(() => { |