mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
23 lines
611 B
Rust
23 lines
611 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,
|
|
});
|
|
|
|
itest!(node_test_module_no_sanitizers {
|
|
args: "test -A --no-check node/test_no_sanitizers/test.js",
|
|
output: "node/test_no_sanitizers/test.out",
|
|
envs: env_vars_for_npm_tests(),
|
|
exit_code: 0,
|
|
// TODO(mmastrac): fix exit sanitizer part of test
|
|
// exit_code: 123,
|
|
http_server: true,
|
|
});
|