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

Commit 7896a17

Browse files
committed
increased timeout
1 parent 49dfd36 commit 7896a17

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

spec/linter-julia-spec.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ describe('The Julia StaticLint.jl provider for Linter', () => {
2222

2323
it('checks a file with syntax error and reports the correct message', async () => {
2424
const excerpt = 'Missing reference';
25+
// very first call - it needs to install packages plus build the server
2526
await atom.workspace.open(badFile);
26-
await wait(15000);
27+
await wait(300000);
2728
const editor = await atom.workspace.open(badFile);
2829
const messages = await lint(editor);
2930

@@ -35,8 +36,6 @@ describe('The Julia StaticLint.jl provider for Linter', () => {
3536
});
3637

3738
it('finds nothing wrong with a valid file', async () => {
38-
await atom.workspace.open(goodFile);
39-
await wait(15000);
4039
const editor = await atom.workspace.open(goodFile);
4140
const messages = await lint(editor);
4241
expect(messages.length).toBe(0);

0 commit comments

Comments
 (0)