Define printWidth at 100

This commit is contained in:
Alex Dima 2020-09-19 01:28:33 +02:00
parent 078ee54715
commit bce6fe83af
No known key found for this signature in database
GPG key ID: 6E58D7B045760DA0
81 changed files with 290 additions and 1156 deletions

5
src/mocha.d.ts vendored
View file

@ -6,10 +6,7 @@
declare function run(): void;
declare function suite(name: string, fn: (err?: any) => void): void;
declare function test(
name: string,
fn: (done: (err?: any) => void) => void
): void;
declare function test(name: string, fn: (done: (err?: any) => void) => void): void;
declare function suiteSetup(fn: (done: (err?: any) => void) => void): void;
declare function suiteTeardown(fn: (done: (err?: any) => void) => void): void;
declare function setup(fn: (done: (err?: any) => void) => void): void;