diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2021-01-26 17:00:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-26 17:00:40 +0100 |
commit | 40fc5f55ea582755d221a3445a2f5f388845bc23 (patch) | |
tree | bb9a8110ba797cb802a08643343c423abcd0b75c /cli/lsp/language_server.rs | |
parent | eb30c6f510ba49fbabcd0121fde5159605eddd77 (diff) |
chore: update crates (#9251)
Updates SWC, dprint, deno_lint, deno_doc, serde, and Tokio (to 1.1.0).
Co-authored-by: Kitson Kelly <me@kitsonkelly.com>
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'cli/lsp/language_server.rs')
-rw-r--r-- | cli/lsp/language_server.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/lsp/language_server.rs b/cli/lsp/language_server.rs index 21a229b47..55ae92c00 100644 --- a/cli/lsp/language_server.rs +++ b/cli/lsp/language_server.rs @@ -1540,7 +1540,7 @@ mod tests { let time = Instant::now(); harness.run().await; assert!( - time.elapsed().as_millis() <= 10000, + time.elapsed().as_millis() <= 15000, "the execution time exceeded 10000ms" ); } |