]> zoso.dev Git - buffer.git/commitdiff
Remove some post-processing from download script
authorVolker Mische <volker.mische@gmail.com>
Sun, 21 Jan 2018 00:54:18 +0000 (01:54 +0100)
committerVolker Mische <volker.mische@gmail.com>
Sun, 21 Jan 2018 02:07:06 +0000 (03:07 +0100)
Some post-processing of the downloaded tests is no longer needed.
Use `const` and `let` instead of `var` and also import a trimmed
down version of the `common` test helper.

bin/download-node-tests.js

index ae542c8d2ff3592f6ec7a58a57fbfa53b6ae24f9..464bb47b23b50354fa4a546ab9bfb294cefff707 100755 (executable)
@@ -71,15 +71,6 @@ function testfixer (filename) {
       firstline = false
     }
 
-    // use `var` instead of `const`/`let`
-    line = line.replace(/(const|let) /g, 'var ')
-
-    // make `var common = require('common')` work
-    line = line.replace(/(var common = require.*)/g, 'var common = { skip: function () {} };')
-
-    // make `require('../common')` work
-    line = line.replace(/require\('\.\.\/common'\);/g, '')
-
     // require browser buffer
     line = line.replace(/(.*)require\('buffer'\)(.*)/g, '$1require(\'../../\')$2')