From 9837d324a7c3f5e1c850dadabfd670edad4aa85b Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Thu, 14 Nov 2019 05:42:34 +1100 Subject: Update to TypeScript 3.7 (#3275) and update to prettier 1.19 Also, update `assert()` and remove not null assertions where possibly in `cli`. Closes #3273 --- std/testing/runner.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'std/testing/runner.ts') diff --git a/std/testing/runner.ts b/std/testing/runner.ts index 48bc4c9c3..d0e9546f5 100755 --- a/std/testing/runner.ts +++ b/std/testing/runner.ts @@ -204,8 +204,8 @@ async function main(): Promise { const include = parsedArgs._.length > 0 - ? (parsedArgs._ as string[]).flatMap( - (fileGlob: string): string[] => fileGlob.split(",") + ? (parsedArgs._ as string[]).flatMap((fileGlob: string): string[] => + fileGlob.split(",") ) : ["."]; const exclude = -- cgit v1.2.3