We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db4128b commit 18ef12cCopy full SHA for 18ef12c
test/v1/direct.driver.boltkit.test.js
@@ -23,6 +23,17 @@ import boltStub from '../internal/bolt-stub';
23
24
describe('direct driver with stub server', () => {
25
26
+ let originalTimeout;
27
+
28
+ beforeAll(() => {
29
+ originalTimeout = jasmine.DEFAULT_TIMEOUT_INTERVAL;
30
+ jasmine.DEFAULT_TIMEOUT_INTERVAL = 60000;
31
+ });
32
33
+ afterAll(() => {
34
+ jasmine.DEFAULT_TIMEOUT_INTERVAL = originalTimeout;
35
36
37
it('should run query', done => {
38
if (!boltStub.supported) {
39
done();
0 commit comments