mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-08 23:58:13 +08:00
17 lines
387 B
TypeScript
17 lines
387 B
TypeScript
import { ElementFinder, promise } from 'protractor/built';
|
|
|
|
import { GroupInputsPage } from './group-inputs.po';
|
|
|
|
describe('Group Inputs Page', () => {
|
|
let page: GroupInputsPage;
|
|
|
|
beforeEach(() => {
|
|
page = new GroupInputsPage();
|
|
});
|
|
|
|
it('should display title', () => {
|
|
page.navigateTo();
|
|
expect(page.getTitleText()).toEqual('Ionic Core Group Inputs Demo');
|
|
});
|
|
});
|