Skip to content

Commit

Permalink
Bump timeouts by 10x to try to pass js tests on windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
jasongrout committed Dec 21, 2019
1 parent 64dfa2f commit e07b71f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tests/test-outputarea/src/widget.spec.ts
Expand Up @@ -52,7 +52,7 @@ describe('outputarea/widget', () => {
let model: OutputAreaModel;

beforeAll(async () => {
jest.setTimeout(240000);
jest.setTimeout(2400000);
});

beforeEach(() => {
Expand Down
2 changes: 1 addition & 1 deletion tests/test-services/src/kernel/ikernel.spec.ts
Expand Up @@ -28,7 +28,7 @@ describe('Kernel.IKernel', () => {
let kernelManager = new KernelManager();

beforeAll(async () => {
jest.setTimeout(240000);
jest.setTimeout(2400000);
specs = await KernelSpecAPI.getSpecs();
});

Expand Down
2 changes: 1 addition & 1 deletion tests/test-services/src/kernel/manager.spec.ts
Expand Up @@ -16,7 +16,7 @@ describe('kernel/manager', () => {
let kernel: Kernel.IModel;

beforeAll(async () => {
jest.setTimeout(240000);
jest.setTimeout(2400000);
kernel = await KernelAPI.startNew();
});

Expand Down
2 changes: 1 addition & 1 deletion tests/test-services/src/session/isession.spec.ts
Expand Up @@ -44,7 +44,7 @@ describe('session', () => {
let defaultSession: Session.ISessionConnection;

beforeAll(async () => {
jest.setTimeout(240000);
jest.setTimeout(2400000);
defaultSession = await startNew();
});

Expand Down
2 changes: 1 addition & 1 deletion tests/test-services/src/session/manager.spec.ts
Expand Up @@ -37,7 +37,7 @@ describe('session/manager', () => {
let session: Session.ISessionConnection;

beforeAll(() => {
jest.setTimeout(240000);
jest.setTimeout(2400000);
});

beforeEach(async () => {
Expand Down
2 changes: 1 addition & 1 deletion testutils/src/jest-script.ts
@@ -1,2 +1,2 @@
declare var jest: any;
jest.setTimeout(20000);
jest.setTimeout(2400000);

0 comments on commit e07b71f

Please sign in to comment.