fix(deps): Update dependencies

This commit is contained in:
Joachim Van Herwegen
2022-02-01 15:00:19 +01:00
parent 52f400d344
commit d2870e5c8b
10 changed files with 5171 additions and 6169 deletions

View File

@@ -347,8 +347,9 @@ describe('AppRunner', (): void => {
setImmediate(resolve);
});
expect(error).toHaveBeenCalledWith('Unsupported positional arguments: "foo", "bar", "foo.txt", "bar.txt"');
expect(exit).toHaveBeenCalledTimes(1);
expect(error).toHaveBeenCalledWith('Unknown arguments: foo, bar, foo.txt, bar.txt');
// Yargs also calls process.exit in this case
expect(exit).toHaveBeenCalledTimes(2);
expect(exit).toHaveBeenCalledWith(1);
});