mirror of
https://git.leinelab.org/Mal/metasocket-cordova.git
synced 2025-12-06 02:50:50 +01:00
15 lines
287 B
TypeScript
15 lines
287 B
TypeScript
import { AppPage } from './app.po';
|
|
|
|
describe('new App', () => {
|
|
let page: AppPage;
|
|
|
|
beforeEach(() => {
|
|
page = new AppPage();
|
|
});
|
|
|
|
it('should be blank', () => {
|
|
page.navigateTo();
|
|
expect(page.getParagraphText()).toContain('Start with Ionic UI Components');
|
|
});
|
|
});
|