1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
denoland-deno/tests/integration/node_compat_tests.rs
Matt Mastracci 3d2e52ae7e
chore: continue tests/ re-org (#22396)
Split `node_compat_tests` into its own top-level test so its stdout
doesn't stomp on the remainder of the tests.
2024-02-12 17:13:14 -07:00

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,
});