Welcome to mirror list, hosted at ThFree Co, Russian Federation.

windows.js « test « which « node_modules « npm « deps - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1d5e4294a69357a4dbb036e414bb22fb1d745186 (plain)
1
2
3
4
5
6
7
8
9
10
// pretend to be Windows.
if (process.platform === 'win32') {
  var t = require('tap')
  t.plan(0, 'already on windows')
  process.exit(0)
}

process.env.Path = process.env.PATH.split(':').join(';')
process.env.OSTYPE = 'cygwin'
require('./basic.js')