1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-03 04:48:52 -05:00
denoland-deno/tests/integration/node_compat_tests.rs

14 lines
313 B
Rust
Raw Normal View History

// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
2023-02-17 09:58:52 -05:00
use test_util as util;
use test_util::itest;
use util::env_vars_for_npm_tests;
2023-02-17 09:58:52 -05:00
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,
});