diff --git a/appveyor.yml b/appveyor.yml index b76c65128a..960f39703d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -5,15 +5,15 @@ init: # Test against these versions of Node.js. environment: matrix: - - nodejs_version: "6" - - nodejs_version: "8" + - nodejs_version: "6.12.2" + - nodejs_version: "8.9.3" matrix: fast_finish: true # Install scripts. (runs after repo cloning) install: - - ps: Install-Product node $env:nodejs_version + - ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version) - npm install -g npm - npm install diff --git a/test/scripts/box/file.js b/test/scripts/box/file.js index 6bd04809c0..f7f2a283df 100644 --- a/test/scripts/box/file.js +++ b/test/scripts/box/file.js @@ -73,8 +73,6 @@ describe('File', () => { file.stat((err, fileStats) => { if (err) return callback(err); - //todo: cast dev to uint32 until https://github.com/nodejs/node/issues/16496 is resolved - fileStats.dev = (new Uint32Array([fileStats.dev]))[0]; fileStats.should.eql(fs.statSync(file.source)); callback(); });