Files
spring-soap/spring-boot-angular/src/main/java/com/baeldung/angularclient/e2e/app.e2e-spec.ts
Alejandro Gervasio ad4ff82fa2 Building a web application with Spring Boot and Angular (#6396)
* Initial Commit

* Update pom.xml
2019-02-25 22:01:25 -06:00

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!');
});
});