LemonLDAP::NG Web SSO
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.
lemonldap-ng/e2e-tests/handler/03-post.js

13 lines
427 B

'use strict';
/* http://docs.angularjs.org/guide/dev_guide.e2e-testing */
describe('Lemonldap::NG', function() {
describe('Form replay mechanism', function() {
it('should redirect to index.pl', function() {
browser.driver.get('http://test1.example.com:' + process.env.TESTWEBSERVERPORT + '/form.html');
expect(browser.driver.findElement(by.id('field_postuid')).getText()).toEqual('dwho');
});
});
});