Skip to content

Commit bb60b20

Browse files
committed
Had the test DEFAULT_TIMEOUT_INTERVAL setting in the wrong index.ts
1 parent 430a001 commit bb60b20

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ type SupportedPlatforms = 'darwin' | 'linux' | 'win32';
1111

1212
const streamPipeline = promisify(pipeline);
1313

14-
(global as any).jasmine.DEFAULT_TIMEOUT_INTERVAL = 120000;
15-
1614
export interface Options {
1715
/**
1816
* Specify to use a specific version of ChromeDriver, instead of auto-detecting.

test/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import { getChromePath, getChromeDetails, downloadChromeDriver, getChromeDriverDetails } from '../src/index';
22

3+
(global as any).jasmine.DEFAULT_TIMEOUT_INTERVAL = 120000;
4+
35
describe('chromedriver-downloader', () => {
46
it('should get the path to chrome', async () => {
57
// Some examples:

0 commit comments

Comments
 (0)