mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-03-04 11:11:05 +01:00
Resolved 0.4.0 related conflicts: modules/users/server/controllers/users/users.authentication.server.controller.js
11 lines
304 B
JavaScript
11 lines
304 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);
|
|
});
|
|
});
|
|
});
|