mirror of
https://github.com/denoland/deno.git
synced 2025-08-03 18:38:33 +00:00
chore: upgrade dependencies (#10094)
This commit upgrades: - swc_ecmascript - swc_bundler - deno_doc - deno_lint - dprint-plugin-typescript
This commit is contained in:
parent
0fd1fb9329
commit
1c7217e390
21 changed files with 106 additions and 95 deletions
|
@ -853,7 +853,7 @@ unitTest(async function consoleTestStringifyPromises(): Promise<void> {
|
|||
rej(Error("Whoops"));
|
||||
});
|
||||
await rejectedPromise;
|
||||
} catch (err) {
|
||||
} catch (_err) {
|
||||
// pass
|
||||
}
|
||||
const strLines = stringify(rejectedPromise).split("\n");
|
||||
|
@ -1478,7 +1478,7 @@ unitTest(function consoleLogShouldNotThrowError(): void {
|
|||
try {
|
||||
console.log(new Error("foo"));
|
||||
result = 1;
|
||||
} catch (e) {
|
||||
} catch (_e) {
|
||||
result = 2;
|
||||
}
|
||||
assertEquals(result, 1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue