You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcp-csc/t/specs/wdio-setup.spec.js

9 lines
307 B

var assert = require('assert');
describe('webdriver.io page', function() {
it('should have the right title - the fancy generator way', function () {
browser.url('http://localhost:1841');
var title = browser.getTitle();
assert.equal(title, 'Sipwise Customer Portal');
});
});