mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 11:17:19 +08:00
14 lines
315 B
JavaScript
14 lines
315 B
JavaScript
describe('Navigation', () => {
|
|
beforeEach(() => {
|
|
cy.visit('http://localhost:8080/navigation');
|
|
});
|
|
|
|
it('should push a page with props', () => {
|
|
cy.get('#open-nav-modal').click();
|
|
|
|
cy.get('#push-nav-child').click();
|
|
|
|
cy.get('#nav-child-content').should('have.text', 'Custom Title');
|
|
});
|
|
});
|