2024-01-01 14:58:21 -05:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2023-02-17 23:58:52 +09:00
|
|
|
|
|
|
|
use test_util as util;
|
2024-02-12 17:13:14 -07:00
|
|
|
use test_util::itest;
|
2023-08-29 13:02:54 -06:00
|
|
|
use util::env_vars_for_npm_tests;
|
2023-02-17 23:58:52 +09:00
|
|
|
|
2023-08-02 01:17:38 +02:00
|
|
|
itest!(node_test_module {
|
|
|
|
args: "test node/test.js",
|
|
|
|
output: "node/test.out",
|
2023-08-29 13:02:54 -06:00
|
|
|
envs: env_vars_for_npm_tests(),
|
2023-08-02 01:17:38 +02:00
|
|
|
exit_code: 1,
|
2023-08-29 13:02:54 -06:00
|
|
|
http_server: true,
|
2023-08-02 01:17:38 +02:00
|
|
|
});
|