Added longer timeout for basic authentication test.

This commit is contained in:
Richard Moore 2018-07-26 18:19:26 -04:00
parent 29f3d2dea8
commit 294d0fda61
No known key found for this signature in database
GPG Key ID: 525F70A6FCABC295

@ -421,6 +421,7 @@ describe('Test Basic Authentication', function() {
function test(name, url) {
it('tests ' + name, function() {
this.timeout(100000);
return Provider.fetchJSON(url).then(function(data) {
assert.equal(data.authenticated, true, 'authenticates user');
});