15 lines
341 B
TypeScript
15 lines
341 B
TypeScript
import { AngularElectronPage } from './app.po';
|
|
|
|
describe('angular-electron App', () => {
|
|
let page: AngularElectronPage;
|
|
|
|
beforeEach(() => {
|
|
page = new AngularElectronPage();
|
|
});
|
|
|
|
it('should display message saying App works !', () => {
|
|
page.navigateTo();
|
|
expect(page.getParagraphText()).toEqual('App works !');
|
|
});
|
|
});
|