Skip to content

Commit

Permalink
Upped timeout for loading in lib
Browse files Browse the repository at this point in the history
  • Loading branch information
brianhyder committed Apr 18, 2015
1 parent 9855351 commit 8f07933
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions test/include/access_management_tests.js
Expand Up @@ -8,11 +8,12 @@ describe('SecurityService', function() {
var pb = null;
var SecurityService = null;
before('Initialize the Environment with the default configuration', function(next) {

//travis gets slow so we bump the timeout just a little here to get around the BS
this.timeout(10000);
var start = (new Date()).getTime();
var config = Configuration.getBaseConfig();

console.log('Initializing PB lib with base configuration');
pb = new Lib(config);
pb = new Lib(Configuration.getBaseConfig());
SecurityService = pb.SecurityService;

console.log('Completed in %sms', (new Date()).getTime() - start);
Expand Down

0 comments on commit 8f07933

Please sign in to comment.