diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-09-21 18:36:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-21 18:36:37 +0200 |
commit | 92edc364426ddb4c80292ebe7e702c02f9344c5b (patch) | |
tree | 2fb92cdd08b0d10a59a2cd4b4820f7afbca17486 /cli/test_runner.rs | |
parent | 9d738fc1977e0bd3d36f361198a1101e17c3b3b3 (diff) |
refactor: use futures and serde_json from deno_core (#7614)
Diffstat (limited to 'cli/test_runner.rs')
-rw-r--r-- | cli/test_runner.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/test_runner.rs b/cli/test_runner.rs index 7b5366852..1e91d1c30 100644 --- a/cli/test_runner.rs +++ b/cli/test_runner.rs @@ -3,6 +3,7 @@ use crate::fs as deno_fs; use crate::installer::is_remote_url; use deno_core::error::AnyError; +use deno_core::serde_json::json; use deno_core::url::Url; use std::path::Path; use std::path::PathBuf; |