blob: 7b848ba5b795f95085811d94734439ddc9226ac5 [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
10 it(`verifying proper text for the "Tenant Context" label; instead of "Select VSP"`, function () {
11
12 cy.visit('/app/vid/scripts/modals/new-test-environment/new-test-environment.html');
13 cy.get('label[for=tenantContext]').contains('Tenant Context');
14 });
15 });
16 });
17
18