Merge pull request #1484 from alexcrichton/new-node

Upgrade version of node.js used on Azure
This commit is contained in:
Alex Crichton 2019-04-25 22:14:31 -05:00 committed by GitHub
commit 26df24ae6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -3,4 +3,4 @@ steps:
displayName: "Add WebAssembly target via rustup"
- task: NodeTool@0
inputs:
versionSpec: '>=10.11'
versionSpec: '>=12.0'

View File

@ -21,7 +21,7 @@ exports.test_is_concat_spreadable = function(sym) {
numeric[sym] = false;
alphaNumeric = alpha.concat(numeric);
assert.deepEqual(alphaNumeric, ["a", "b", "c", [1, 2, 3]]);
assert.deepEqual(alphaNumeric, ["a", "b", "c", numeric]);
};
exports.test_iterator = function(sym) {