We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bf2da0 commit c95155aCopy full SHA for c95155a
src/jarContentProvider.ts
@@ -26,5 +26,4 @@ export class JarContentProvider implements vscode.TextDocumentContentProvider {
26
})
27
});
28
}
29
-
30
test/utils.ts
@@ -1,3 +1,5 @@
1
+import { ISuiteCallbackContext } from "mocha";
2
+
3
const LONG_TIMEOUT: number = 5000;
4
5
/**
@@ -7,10 +9,7 @@ const LONG_TIMEOUT: number = 5000;
7
9
*
8
10
* @param suite: A test suite instance.
11
*/
-const setLongTimeout = (suite: Mocha.IContextDefinition): void => {
12
+export const setLongTimeout = (
13
+ suite: Mocha.IContextDefinition | ISuiteCallbackContext): void => {
14
suite.timeout(LONG_TIMEOUT);
15
-export const utils = {
- setLongTimeout,
16
-}
0 commit comments