mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 11:17:19 +08:00
15 lines
295 B
TypeScript
15 lines
295 B
TypeScript
import { InputsPage } from './inputs.po';
|
|
|
|
describe('Demo Inputs Page', () => {
|
|
let page: InputsPage;
|
|
|
|
beforeEach(() => {
|
|
page = new InputsPage();
|
|
});
|
|
|
|
it('should display title', () => {
|
|
page.navigateTo();
|
|
expect(page.getTitle()).toEqual('Ionic Core Inputs Demo');
|
|
});
|
|
});
|