15 lines
386 B
TypeScript
15 lines
386 B
TypeScript
import { AngularElectronPage } from './app.po';
|
|
import { browser, element, by } from 'protractor';
|
|
|
|
describe('angular-electron App', () => {
|
|
let page: AngularElectronPage;
|
|
|
|
beforeEach(() => {
|
|
page = new AngularElectronPage();
|
|
});
|
|
|
|
it('should display message saying App works !', () => {
|
|
expect(element(by.css('app-home h1')).getText()).toMatch('App works !');
|
|
});
|
|
});
|