mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
25 lines
553 B
JavaScript
25 lines
553 B
JavaScript
---
|
|
name: reorderDelete
|
|
component: ionList
|
|
---
|
|
|
|
it('should show reorder icons', function(){
|
|
var ele = element.all(by.css('.bar-header .button'));
|
|
ele.get(1).click();
|
|
});
|
|
|
|
it('should hide reorder icons', function(){
|
|
var ele = element.all(by.css('.bar-header .button'));
|
|
ele.get(1).click();
|
|
});
|
|
|
|
it('should show delete icons', function(){
|
|
var ele = element.all(by.css('.bar-header .button'));
|
|
ele.get(0).click();
|
|
});
|
|
|
|
it('should hide delete icons', function(){
|
|
var ele = element.all(by.css('.bar-header .button'));
|
|
ele.get(0).click();
|
|
});
|