mirror of
https://github.com/loewexy/pdnsmanager.git
synced 2025-01-16 03:02:22 +01:00
14 lines
293 B
TypeScript
14 lines
293 B
TypeScript
import { AppPage } from './app.po';
|
|
|
|
describe('pdnsmanager App', () => {
|
|
let page: AppPage;
|
|
|
|
beforeEach(() => {
|
|
page = new AppPage();
|
|
});
|
|
|
|
it('should display welcome message', () => {
|
|
page.navigateTo();
|
|
expect(page.getParagraphText()).toEqual('Welcome to app!');
|
|
});
|
|
});
|