mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-16 18:17:31 +08:00
15 lines
341 B
TypeScript
15 lines
341 B
TypeScript
describe('View Child', () => {
|
|
beforeEach(() => {
|
|
cy.visit('/view-child');
|
|
})
|
|
|
|
it('should get a reference to all children', () => {
|
|
// button should be red
|
|
cy.get('#color-button').should('have.class', 'ion-color-danger');
|
|
|
|
// tabs should be found
|
|
cy.get('#tabs-result').should('have.text', 'all found');
|
|
});
|
|
});
|
|
|