diff options
author | tokiedokie <thetokiedokie@gmail.com> | 2020-09-14 20:18:00 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-14 13:18:00 +0200 |
commit | e688a701e20cbed8908b4fb3629a554dc75b4e5b (patch) | |
tree | 6750e0de16c5068238ea4db207982eb1a52a1d77 /cli/tests/https_import.ts | |
parent | bee36a4de8516aa222bbb2b6650974bdd7cb57f4 (diff) |
test(cli/tests/https_import): use ts file in localhost instead of remote (#7431)
Diffstat (limited to 'cli/tests/https_import.ts')
-rw-r--r-- | cli/tests/https_import.ts | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cli/tests/https_import.ts b/cli/tests/https_import.ts index faaf2175f..e78a342a0 100644 --- a/cli/tests/https_import.ts +++ b/cli/tests/https_import.ts @@ -1,5 +1,3 @@ -// TODO Use https://localhost:4555/ but we need more infrastructure to -// support verifying self-signed certificates. -import { printHello } from "https://gist.githubusercontent.com/ry/f12b2aa3409e6b52645bc346a9e22929/raw/79318f239f51d764384a8bded8d7c6a833610dde/print_hello.ts"; +import { printHello } from "https://localhost:5545/cli/tests/subdir/print_hello.ts"; printHello(); |