stackviz/test/e2e/routes_spec.js
Tim Buckley 7eab971d3f Switch to eslint.
This ports over changes made in openstack-health to convert the
project from jshint to eslint, with the eslint-config-openstack
plugin.

Change-Id: Iaa0490d07603e2481e1c738136f9fda1be95dea8
2015-11-18 15:36:36 -07:00

13 lines
216 B
JavaScript

/*global browser */
'use strict';
describe('E2E: Routes', function() {
it('should have a working home route', function() {
browser.get('#/');
expect(browser.getLocationAbsUrl()).toMatch('/');
});
});