blob: 62fd86bc2fed5866134be824bcd0c0224b9e705e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
///<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();
});
afterEach(() => {
cy.screenshot();
});
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');
});
});
});
|