mirror of
https://github.com/denoland/deno.git
synced 2025-01-18 03:44:05 -05:00
chore(tests): Deprecate remaining usages of itest in check tests (#26962)
This PR progresses #22907 by deprecating the usage of `itest` in `tests/integration/check_tests.rs`
This commit is contained in:
parent
4ab668ed06
commit
fe1be715d8
7 changed files with 14 additions and 15 deletions
|
@ -3,23 +3,9 @@
|
|||
use deno_lockfile::NewLockfileOptions;
|
||||
use deno_semver::jsr::JsrDepPackageReq;
|
||||
use test_util as util;
|
||||
use test_util::itest;
|
||||
use util::TestContext;
|
||||
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]
|
||||
fn cache_switching_config_then_no_config() {
|
||||
let context = TestContext::default();
|
||||
|
|
5
tests/specs/check/check_all/__test__.jsonc
Normal file
5
tests/specs/check/check_all/__test__.jsonc
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"args": "check --allow-import --quiet --all check_all.ts",
|
||||
"output": "check_all.out",
|
||||
"exitCode": 1
|
||||
}
|
5
tests/specs/check/check_all_local/__test__.jsonc
Normal file
5
tests/specs/check/check_all_local/__test__.jsonc
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"args": "check --allow-import --quiet check_all_local.ts",
|
||||
"output": "",
|
||||
"exitCode": 0
|
||||
}
|
3
tests/specs/check/check_all_local/check_all_local.ts
Normal file
3
tests/specs/check/check_all_local/check_all_local.ts
Normal file
|
@ -0,0 +1,3 @@
|
|||
import * as a from "http://localhost:4545/subdir/type_error.ts";
|
||||
|
||||
console.log(a.a);
|
|
@ -211,7 +211,7 @@ async function ensureNoNewITests() {
|
|||
"bench_tests.rs": 0,
|
||||
"cache_tests.rs": 0,
|
||||
"cert_tests.rs": 0,
|
||||
"check_tests.rs": 2,
|
||||
"check_tests.rs": 0,
|
||||
"compile_tests.rs": 0,
|
||||
"coverage_tests.rs": 0,
|
||||
"eval_tests.rs": 0,
|
||||
|
|
Loading…
Add table
Reference in a new issue