mirror of
https://github.com/wassname/cardsforscience.git
synced 2026-06-27 18:42:09 +08:00
26 lines
600 B
JavaScript
26 lines
600 B
JavaScript
'use strict';
|
|
|
|
/* http://docs.angularjs.org/guide/dev_guide.e2e-testing */
|
|
|
|
describe('cards for science', function() {
|
|
|
|
|
|
describe('Phone list view', function() {
|
|
|
|
beforeEach(function() {
|
|
browser.get('index.html');
|
|
});
|
|
|
|
|
|
// it('should filter the phone list as a user types into the search box', function() {
|
|
//
|
|
// var lastCards = element.all(by.css('#lastCards .card'));
|
|
// expect(lastCards.count()).toBe(3);
|
|
//
|
|
// var query = element(by.repeater('r in rc.cards'));
|
|
// query.click();
|
|
// expect(lastCards.count()).toBe(4);
|
|
// });
|
|
});
|
|
});
|