mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
3d2e52ae7e
Split `node_compat_tests` into its own top-level test so its stdout doesn't stomp on the remainder of the tests.
13 lines
313 B
Rust
13 lines
313 B
Rust
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
use test_util as util;
|
|
use test_util::itest;
|
|
use util::env_vars_for_npm_tests;
|
|
|
|
itest!(node_test_module {
|
|
args: "test node/test.js",
|
|
output: "node/test.out",
|
|
envs: env_vars_for_npm_tests(),
|
|
exit_code: 1,
|
|
http_server: true,
|
|
});
|