mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-19 22:02:24 +01:00
11 lines
307 B
JavaScript
11 lines
307 B
JavaScript
'use strict';
|
|
|
|
describe('Articles E2E Tests:', function() {
|
|
describe('Test articles page', function() {
|
|
it('Should report missing credentials', function() {
|
|
browser.get('http://localhost:3000/#!/articles');
|
|
expect(element.all(by.repeater('article in articles')).count()).toEqual(0);
|
|
});
|
|
});
|
|
});
|