b10782f89e
* Initial Commit * Delete angularclient folder * Add spring-boot-angular module to root pom.xml * Update pom.xml * Update root pom.xml * Update root pom.xml
15 lines
291 B
TypeScript
15 lines
291 B
TypeScript
import { AppPage } from './app.po';
|
|
|
|
describe('sampleapp App', () => {
|
|
let page: AppPage;
|
|
|
|
beforeEach(() => {
|
|
page = new AppPage();
|
|
});
|
|
|
|
it('should display welcome message', () => {
|
|
page.navigateTo();
|
|
expect(page.getParagraphText()).toEqual('Welcome to app!');
|
|
});
|
|
});
|