diff options
Diffstat (limited to 'cli/tsc.rs')
-rw-r--r-- | cli/tsc.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cli/tsc.rs b/cli/tsc.rs index a2265e36f..001cfaf5d 100644 --- a/cli/tsc.rs +++ b/cli/tsc.rs @@ -689,7 +689,7 @@ mod tests { }) }) .map_err(|err| err.into()); - Box::pin(future::ready((specifier.clone(), response))) + Box::pin(future::ready(response)) } } @@ -711,6 +711,7 @@ mod tests { None, None, None, + None, ) .await; State::new( @@ -737,6 +738,7 @@ mod tests { None, None, None, + None, ) .await; let config = TsConfig::new(json!({ |