Skip to content

Commit

Permalink
increase timeout to fix Windows tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mansona committed Jun 21, 2021
1 parent b472ee5 commit 1520085
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test-packages/basic-app/test/response-details-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const expect = require('chai').use(require('chai-string')).expect;
const { startServer, stopServer } = require('../../test-libs');

describe('response details', function() {
this.timeout(80000);
this.timeout(120000);

before(function() {
return startServer();
Expand Down
2 changes: 1 addition & 1 deletion test-packages/basic-app/test/server-assets-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const expect = require('chai').use(require('chai-string')).expect;
const { startServer, stopServer } = require('../../test-libs');

describe('serve assets acceptance', function() {
this.timeout(80000);
this.timeout(120000);

before(function() {
return startServer();
Expand Down
2 changes: 1 addition & 1 deletion test-packages/basic-app/test/shoebox-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const expect = require('chai').use(require('chai-string')).expect;
const { startServer, stopServer } = require('../../test-libs');

describe('shoebox - put', function() {
this.timeout(80000);
this.timeout(120000);

before(function() {
return startServer();
Expand Down
2 changes: 1 addition & 1 deletion test-packages/basic-app/test/simple-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const expect = require('chai').use(require('chai-string')).expect;
const { startServer, stopServer } = require('../../test-libs');

describe('simple acceptance', function() {
this.timeout(80000);
this.timeout(120000);

before(function() {
return startServer();
Expand Down

0 comments on commit 1520085

Please sign in to comment.