summaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/cypress/integration/shared
diff options
context:
space:
mode:
authorIttay Stern <ittay.stern@att.com>2018-08-29 17:01:32 +0300
committerIttay Stern <ittay.stern@att.com>2019-02-18 18:35:30 +0200
commit6f900cc45d7dd7f97430812b86b5c1d1693c8ae3 (patch)
tree936005c364dc5a7264d6304d4777c3d83494db22 /vid-webpack-master/cypress/integration/shared
parent67d99f816cc583643c35193197594cf78d8ce60a (diff)
merge from ecomp a88f0072 - Modern UI
Issue-ID: VID-378 Change-Id: Ibcb23dd27f550cf32ce2fe0239f0f496ae014ff6 Signed-off-by: Ittay Stern <ittay.stern@att.com>
Diffstat (limited to 'vid-webpack-master/cypress/integration/shared')
-rw-r--r--vid-webpack-master/cypress/integration/shared/error.message.popup.e2e.ts6
-rw-r--r--vid-webpack-master/cypress/integration/shared/spinner.e2e.ts28
2 files changed, 23 insertions, 11 deletions
diff --git a/vid-webpack-master/cypress/integration/shared/error.message.popup.e2e.ts b/vid-webpack-master/cypress/integration/shared/error.message.popup.e2e.ts
index 8e78067e1..69021132c 100644
--- a/vid-webpack-master/cypress/integration/shared/error.message.popup.e2e.ts
+++ b/vid-webpack-master/cypress/integration/shared/error.message.popup.e2e.ts
@@ -18,7 +18,11 @@ describe('Error message popup', function () {
})
});
- it('spinner should display after api call', function () {
+ afterEach(() => {
+ cy.screenshot();
+ });
+
+ it('error should display on api error', function () {
// adding call with delay of 2000 sec
cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/asyncInstantiation.json').then((res) => {
jsonBuilderInstantiationBuilder.basicJson(res, Cypress.config('baseUrl') + "/asyncInstantiation**", 500,0, "error 500 asyncInstantiation");
diff --git a/vid-webpack-master/cypress/integration/shared/spinner.e2e.ts b/vid-webpack-master/cypress/integration/shared/spinner.e2e.ts
index 35f386fd5..438e7bc3a 100644
--- a/vid-webpack-master/cypress/integration/shared/spinner.e2e.ts
+++ b/vid-webpack-master/cypress/integration/shared/spinner.e2e.ts
@@ -17,20 +17,28 @@ describe('Spinner', function () {
})
});
+ afterEach(() => {
+ cy.screenshot();
+ });
+
it('spinner should display after api call', function () {
- cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/asyncInstantiation.json').then((res) => {
+ const timeBomb:Date = new Date(2018,6,10,0,0,0); //month 6 is July
+ if (new Date(Date.now()) > timeBomb) {
+
+ cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/asyncInstantiation.json').then((res) => {
- jsonBuilderInstantiationBuilder.basicJson(res,
- Cypress.config('baseUrl') + "/asyncInstantiation**",
- 200,
- 2000,
- "error 500 asyncInstantiation");
- cy.openIframe('app/ui/#/instantiationStatus');
+ jsonBuilderInstantiationBuilder.basicJson(res,
+ Cypress.config('baseUrl') + "/asyncInstantiation**",
+ 200,
+ 4000,
+ "error 500 asyncInstantiation");
+ cy.openIframe('app/ui/#/instantiationStatus');
- cy.get('.spinner')
- .and('be.visible');
+ cy.get('.sdc-loader')
+ .and('be.visible');
- });
+ });
+ }
});
});
});