There was an error while loading. Please reload this page.
1 parent f878b48 commit 9022527Copy full SHA for 9022527
src/test/testRunner.ts
@@ -38,7 +38,7 @@ type Instrumenter = istanbul.Instrumenter & { coverState: CoverState };
38
type TestCallback = (error?: Error, failures?: number) => void;
39
40
// Linux: prevent a weird NPE when mocha on Linux requires the window size from the TTY.
41
-// Since we are not running in a tty environment, we just implementt he method statically.
+// Since we are not running in a tty environment, we just implement the method statically.
42
const tty = require('tty');
43
if (!tty.getWindowSize) {
44
tty.getWindowSize = function (): number[] { return [80, 75]; };
0 commit comments