summaryrefslogtreecommitdiff
path: root/cli/tests/integration/compat_tests.rs
blob: 6b6ab81b54ffcf9267f83bc37f5fb24ee9e64681 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.

use crate::itest;
use test_util as util;

itest!(globals {
  args: "run --compat --unstable --allow-read --allow-env compat/globals.ts",
  output: "compat/globals.out",
});

itest!(fs_promises {
  args: "run --compat --unstable -A compat/fs_promises.js",
  output: "compat/fs_promises.out",
});

itest!(node_prefix_fs_promises {
  args: "run --compat --unstable -A compat/node_fs_promises.js",
  output: "compat/fs_promises.out",
});

itest!(existing_import_map {
  args: "run --compat --unstable --import-map compat/existing_import_map.json compat/fs_promises.js",
  output: "compat/existing_import_map.out",
  exit_code: 1,
});

#[test]
fn globals_in_repl() {
  let (out, _err) = util::run_and_collect_output_with_args(
    true,
    vec!["repl", "--compat", "--unstable", "--quiet"],
    Some(vec!["global == window"]),
    None,
    false,
  );
  assert!(out.contains("true"));
}