Skip to content
This repository was archived by the owner on Aug 7, 2023. It is now read-only.

Commit 63d6c81

Browse files
committed
increased another timeout, too
1 parent 7896a17 commit 63d6c81

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/linter-julia-spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const badFile = path.join(__dirname, 'fixtures', 'bad.jl');
1212
const goodFile = path.join(__dirname, 'fixtures', 'good.jl');
1313

1414
// Julia is _slow_ to bring in StaticLint.jl, increase the timeout to 90 seconds
15-
jasmine.getEnv().defaultTimeoutInterval = 180 * 1000;
15+
jasmine.getEnv().defaultTimeoutInterval = 400 * 1000;
1616

1717
describe('The Julia StaticLint.jl provider for Linter', () => {
1818
beforeEach(async () => {
@@ -24,7 +24,7 @@ describe('The Julia StaticLint.jl provider for Linter', () => {
2424
const excerpt = 'Missing reference';
2525
// very first call - it needs to install packages plus build the server
2626
await atom.workspace.open(badFile);
27-
await wait(300000);
27+
await wait(300 * 1000);
2828
const editor = await atom.workspace.open(badFile);
2929
const messages = await lint(editor);
3030

0 commit comments

Comments
 (0)