mirror of
https://github.com/amark/gun.git
synced 2025-03-30 15:08:33 +00:00
15 lines
305 B
TypeScript
15 lines
305 B
TypeScript
import { AngularPage } from './app.po';
|
|
|
|
describe('angular App', () => {
|
|
let page: AngularPage;
|
|
|
|
beforeEach(() => {
|
|
page = new AngularPage();
|
|
});
|
|
|
|
it('should display message saying app works', () => {
|
|
page.navigateTo();
|
|
expect(page.getParagraphText()).toEqual('app works!');
|
|
});
|
|
});
|