Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Security improvement batch #6622

Merged
merged 17 commits into from
Jan 7, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Increase timeouts on tests
  • Loading branch information
sulkaharo committed Dec 10, 2020
commit 7fc777ebba9e795a280d85312e35684015124ced
3 changes: 1 addition & 2 deletions tests/careportal.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ var nowData = {
};

describe('client', function ( ) {
this.timeout(30000); // TODO: see why this test takes longer on Travis to complete
this.timeout(40000); // TODO: see why this test takes longer on Travis to complete

var self = this;

Expand Down Expand Up @@ -47,7 +47,6 @@ describe('client', function ( ) {
next(true);
};


client.init();
client.dataUpdate(nowData, true);

Expand Down
3 changes: 3 additions & 0 deletions tests/pebble.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,9 @@ ctx.ddata.devicestatus = [{uploader: {battery: 100}}];

var bootevent = require('../lib/server/bootevent');
describe('Pebble Endpoint', function ( ) {

this.timeout(10000);

var pebble = require('../lib/server/pebble');
before(function (done) {
var env = require('../env')( );
Expand Down