diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2017-05-27 22:18:28 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-27 22:18:28 +0800 |
commit | 79131cd64749ee834118f32c2237693072950924 (patch) | |
tree | bcecee3a83491ecb77ea25b32bb87de528c523e0 /test | |
parent | c3f14a1481efc0ec381370fefafcf66c4b68d94b (diff) | |
download | tracifyjs-79131cd64749ee834118f32c2237693072950924.tar.gz tracifyjs-79131cd64749ee834118f32c2237693072950924.zip |
extend `node_version` range on applicable tests (#2015)
Diffstat (limited to 'test')
-rw-r--r-- | test/compress/dead-code.js | 2 | ||||
-rw-r--r-- | test/compress/functions.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/compress/dead-code.js b/test/compress/dead-code.js index 20e154b2..0fcbbe43 100644 --- a/test/compress/dead-code.js +++ b/test/compress/dead-code.js @@ -99,7 +99,7 @@ dead_code_2_should_warn_strict: { f(); } expect_stdout: true - node_version: "=4" + node_version: ">=4" } dead_code_constant_boolean_should_warn_more: { diff --git a/test/compress/functions.js b/test/compress/functions.js index ce8bab80..5ebd9d19 100644 --- a/test/compress/functions.js +++ b/test/compress/functions.js @@ -243,5 +243,5 @@ hoist_funs_strict: { "5 'function' 'function'", "6 'undefined' 'function'", ] - node_version: "=4" + node_version: ">=4" } |