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