Commit ede97703 authored by Heinrich Lee Yu's avatar Heinrich Lee Yu

Increase global karma timeout

Revert useless timeout added in karma spec
parent 54dbaba5
......@@ -195,7 +195,7 @@ describe('note_app', () => {
setTimeout(() => {
done();
});
}, 2000);
});
});
describe('discussion note', () => {
......@@ -230,7 +230,7 @@ describe('note_app', () => {
setTimeout(() => {
done();
});
}, 2000);
});
});
});
......
......@@ -111,7 +111,7 @@ let longRunningTestTimeoutHandle;
beforeEach(done => {
longRunningTestTimeoutHandle = setTimeout(() => {
done.fail('Test is running too long!');
}, 2000);
}, 4000);
done();
});
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment