mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-10 12:35:07 +00:00
15 lines
294 B
TypeScript
15 lines
294 B
TypeScript
import { Fuse2Page } from './app.po';
|
|
|
|
describe('fuse2 App', () => {
|
|
let page: Fuse2Page;
|
|
|
|
beforeEach(() => {
|
|
page = new Fuse2Page();
|
|
});
|
|
|
|
it('should display welcome message', () => {
|
|
page.navigateTo();
|
|
expect(page.getParagraphText()).toEqual('Welcome to app!!');
|
|
});
|
|
});
|