Skip to content

Commit

Permalink
tests: use 10E6 instead of 10e6
Browse files Browse the repository at this point in the history
  • Loading branch information
hemal7735 authored and evenstensberg committed Feb 5, 2019
1 parent e0a0d97 commit c9c5832
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/binCases/stats/single-config/single-config.test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use strict";

jest.setTimeout(10e6);
jest.setTimeout(10E6);
/* eslint-disable node/no-unsupported-features */
/* eslint-disable node/no-unsupported-features/es-syntax */

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use strict";

jest.setTimeout(10e6);
jest.setTimeout(10E6);
/* eslint-disable node/no-unsupported-features */
/* eslint-disable node/no-unsupported-features/es-syntax */

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use strict";

jest.setTimeout(10e6);
jest.setTimeout(10E6);
/* eslint-disable node/no-unsupported-features */
/* eslint-disable node/no-unsupported-features/es-syntax */

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/* eslint-disable node/no-unsupported-features */
/* eslint-disable node/no-unsupported-features/es-syntax */

jest.setTimeout(10e6);
jest.setTimeout(10E6);

const { runWatch, extractSummary } = require("../../../testUtils");

Expand Down
2 changes: 1 addition & 1 deletion test/binCases/watch/multi-config/multi-config.test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use strict";

jest.setTimeout(10e6);
jest.setTimeout(10E6);
/* eslint-disable node/no-unsupported-features */
/* eslint-disable node/no-unsupported-features/es-syntax */

Expand Down

0 comments on commit c9c5832

Please sign in to comment.