apt-maintenance-account
Version:
Apartment Maintenance Account Tracking Application - Client Side in Angular
16 lines (10 loc) • 323 B
text/typescript
import { browser, element, by } from 'protractor';
describe('QuickStart E2E Tests', function () {
let expectedMsg = 'Hello Angular';
beforeEach(function () {
browser.get('');
});
it('should display: ' + expectedMsg, function () {
expect(element(by.css('h1')).getText()).toEqual(expectedMsg);
});
});