Sonsino, Ofir (os0695) | ff76b5e | 2018-07-10 15:57:37 +0300 | [diff] [blame] | 1 | ///<reference path="../../../node_modules/cypress/types/index.d.ts"/> / <reference types="Cypress" /> |
| 2 | |
| 3 | describe('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 | |