From aad32876fcaea679ccd813de583bd5d0e5c6e7d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Fut=C3=A1sz?= Date: Thu, 24 Jan 2019 11:15:54 +0100 Subject: [PATCH] Fix expected return type error --- types/shelljs-exec-proxy/shelljs-exec-proxy-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/shelljs-exec-proxy/shelljs-exec-proxy-tests.ts b/types/shelljs-exec-proxy/shelljs-exec-proxy-tests.ts index 71b7038a44..be6bde704d 100644 --- a/types/shelljs-exec-proxy/shelljs-exec-proxy-tests.ts +++ b/types/shelljs-exec-proxy/shelljs-exec-proxy-tests.ts @@ -5,5 +5,5 @@ shell.git.add('.'); // $ExpectType ExecOutputReturnValue shell.git.commit('-am', 'Fixed issue #1'); // $ExpectType ExecOutputReturnValue shell.git.push('origin', 'master'); // $ExpectType ExecOutputReturnValue -shell.cd('string'); // $ExpectType void +shell.cd('string'); // $ExpectType ShellString shell.cd(123); // $ExpectError