blob: 62fd86bc2fed5866134be824bcd0c0224b9e705e [file] [log] [blame]
Sonsino, Ofir (os0695)ff76b5e2018-07-10 15:57:37 +03001///<reference path="../../../node_modules/cypress/types/index.d.ts"/> / <reference types="Cypress" />
2
3describe('Tenant isolation - Test Environments Page', function () {
4 describe('New Test Environment popup', () => {
5
6 beforeEach(() => {
7 cy.login();
8 });
9
Ittay Stern6f900cc2018-08-29 17:01:32 +030010 afterEach(() => {
11 cy.screenshot();
12 });
13
Sonsino, Ofir (os0695)ff76b5e2018-07-10 15:57:37 +030014 it(`verifying proper text for the "Tenant Context" label; instead of "Select VSP"`, function () {
15
16 cy.visit('/app/vid/scripts/modals/new-test-environment/new-test-environment.html');
17 cy.get('label[for=tenantContext]').contains('Tenant Context');
18 });
19 });
20 });
21
22