Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.217.14
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lib /
node_modules /
npm /
test /
network /
Delete
Unzip
Name
Size
Permission
Date
Action
git-cache-locking.js
1.17
KB
-rw-r--r--
2017-11-03 01:22
git-cache-no-hooks.js
1.37
KB
-rw-r--r--
2017-11-03 01:22
legacy-bundled-git.js
2.36
KB
-rw-r--r--
2017-11-03 01:22
legacy-url-dep.js
1.32
KB
-rw-r--r--
2017-11-03 01:22
registry.js
1.92
KB
-rw-r--r--
2017-11-03 01:22
Save
Rename
// Run all the tests in the `npm-registry-couchapp` suite // This verifies that the server-side stuff still works. var common = require('../common-tap') var test = require('tap').test var npmExec = require.resolve('../../bin/npm-cli.js') var path = require('path') var ca = path.resolve(__dirname, '../../node_modules/npm-registry-couchapp') var which = require('which') var v = process.versions.node.split('.').map(function (n) { return parseInt(n, 10) }) if (v[0] === 0 && v[1] < 10) { console.error( 'WARNING: need a recent Node for npm-registry-couchapp tests to run, have', process.versions.node ) } else { which('couchdb', function (er) { if (er) { console.error('WARNING: need couch to run test: ' + er.message) } else { runTests() } }) } var extend = Object.assign || require('util')._extend function runTests () { var env = extend({ TAP: 1 }, process.env) env.npm = npmExec // TODO: fix tap and / or nyc to handle nested invocations properly env.COVERALLS_REPO_TOKEN = '' var opts = { cwd: ca, stdio: 'inherit' } common.npm(['install'], opts, function (err, code) { if (err) { throw err } if (code) { return test('need install to work', function (t) { t.fail('install failed with: ' + code) t.end() }) } else { opts = { cwd: ca, env: env, stdio: 'inherit' } common.npm(['test', '--', '-Rtap', '--no-coverage'], opts, function (err, code) { if (err) { throw err } if (code) { return test('need test to work', function (t) { t.fail('test failed with: ' + code) t.end() }) } opts = { cwd: ca, env: env, stdio: 'inherit' } common.npm(['prune', '--production'], opts, function (err, code) { if (err) { throw err } process.exit(code || 0) }) }) } }) }