diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-07-21 23:54:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-21 23:54:53 +0200 |
commit | 4e71a9424e12a9711b41edce049ee026f0a904b4 (patch) | |
tree | 7d0bfac4cd787fd6fbe0ec37881a81d607904674 /cli/tests/integration | |
parent | b5eb154d74d3ccb1a5f4fcc4f073ebd841bb904e (diff) |
fix: proper typings for unhandledrejection event (#15271)
Diffstat (limited to 'cli/tests/integration')
-rw-r--r-- | cli/tests/integration/run_tests.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs index d477bb896..25d84ae46 100644 --- a/cli/tests/integration/run_tests.rs +++ b/cli/tests/integration/run_tests.rs @@ -2784,6 +2784,6 @@ itest!(followup_dyn_import_resolved { }); itest!(unhandled_rejection { - args: "run --allow-read unhandled_rejection.js", - output: "unhandled_rejection.js.out", + args: "run --check unhandled_rejection.ts", + output: "unhandled_rejection.ts.out", }); |