mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-28 02:53:11 +00:00
15 lines
312 B
TypeScript
15 lines
312 B
TypeScript
import { FusePage } from './app.po';
|
|
|
|
describe('Fuse App', () => {
|
|
let page: FusePage;
|
|
|
|
beforeEach(() => {
|
|
page = new FusePage();
|
|
});
|
|
|
|
it('should display welcome message', () => {
|
|
page.navigateTo();
|
|
expect(page.getParagraphText()).toEqual('Welcome to Fuse!');
|
|
});
|
|
});
|