Files
meanTorrent/modules/articles/tests/e2e/articles.e2e.tests.js
Ryan Hutchison ef3a3f9548 formatting reboot (space-2 and consistency)
JSCS fixes

update editorconfig
2015-07-31 10:04:02 -04:00

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:3000/articles');
expect(element.all(by.repeater('article in articles')).count()).toEqual(0);
});
});
});