1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

chore: deprecate itest in check tests

This commit is contained in:
Jonny Ingall 2024-11-21 08:54:16 +00:00
parent 0b8df9f24d
commit dded2a57ff
6 changed files with 13 additions and 14 deletions

View file

@ -3,23 +3,9 @@
use deno_lockfile::NewLockfileOptions; use deno_lockfile::NewLockfileOptions;
use deno_semver::jsr::JsrDepPackageReq; use deno_semver::jsr::JsrDepPackageReq;
use test_util as util; use test_util as util;
use test_util::itest;
use util::TestContext; use util::TestContext;
use util::TestContextBuilder; use util::TestContextBuilder;
itest!(check_all {
args: "check --allow-import --quiet --all check/all/check_all.ts",
output: "check/all/check_all.out",
http_server: true,
exit_code: 1,
});
itest!(check_all_local {
args: "check --allow-import --quiet check/all/check_all.ts",
output_str: Some(""),
http_server: true,
});
#[test] #[test]
fn cache_switching_config_then_no_config() { fn cache_switching_config_then_no_config() {
let context = TestContext::default(); let context = TestContext::default();

View file

@ -0,0 +1,5 @@
{
"args": "check --allow-import --quiet --all check_all.ts",
"output": "check_all.out",
"exitCode": 1
}

View file

@ -0,0 +1,5 @@
{
"args": "check --allow-import --quiet check_all_local.ts",
"output": "",
"exitCode": 0
}

View file

@ -0,0 +1,3 @@
import * as a from "http://localhost:4545/subdir/type_error.ts";
console.log(a.a);