From 3c5abcfbfcba7a5018ea3fc6aa41fbb8bbcd7259 Mon Sep 17 00:00:00 2001 From: Rodrigo Saboya Date: Thu, 25 Jan 2018 17:55:37 -0200 Subject: [PATCH] Removing unnecessary checks in integration tests. --- test/integration-test.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/test/integration-test.js b/test/integration-test.js index 7513dbc..a6674e5 100644 --- a/test/integration-test.js +++ b/test/integration-test.js @@ -7,10 +7,6 @@ var rm = require('rimraf') var cwd = path.join(__dirname, 'native-module') test('can prebuild a native module for electron', function (t) { - if (process.versions.modules === '11') { - console.log('Skipping test on node 0.10!') - return t.end() - } rm.sync(path.join(cwd, 'prebuilds')) var file = 'native-v1.0.0-electron-v50-' + process.platform + '-' + process.arch + '.tar.gz' var prebuild = path.join(cwd, 'prebuilds', file) @@ -22,10 +18,6 @@ test('can prebuild a native module for electron', function (t) { }) test('can prebuild a native module for node-webkit', function (t) { - if (process.versions.modules === '11') { - console.log('Skipping test on node 0.10!') - return t.end() - } rm.sync(path.join(cwd, 'prebuilds')) var file = 'native-v1.0.0-node-webkit-v59-' + process.platform + '-' + process.arch + '.tar.gz' var prebuild = path.join(cwd, 'prebuilds', file)