blob: 7b848ba5b795f95085811d94734439ddc9226ac5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
///<reference path="../../../node_modules/cypress/types/index.d.ts"/> / <reference types="Cypress" />
describe('Tenant isolation - Test Environments Page', function () {
describe('New Test Environment popup', () => {
beforeEach(() => {
cy.login();
});
it(`verifying proper text for the "Tenant Context" label; instead of "Select VSP"`, function () {
cy.visit('/app/vid/scripts/modals/new-test-environment/new-test-environment.html');
cy.get('label[for=tenantContext]').contains('Tenant Context');
});
});
});
|