���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /proc/self/root/home/real/node-v13.0.1/deps/npm/test/tap/ |
var fs = require('fs') var path = require('path') var mkdirp = require('mkdirp') var rimraf = require('rimraf') var test = require('tap').test var common = require('../common-tap.js') var pkg = common.pkg var editorSrc = function () { /* #!/usr/bin/env node var fs = require('fs') if (fs.existsSync(process.argv[2])) { console.log('success') } else { console.log('error') process.exit(1) } */ }.toString().split('\n').slice(1, -1).join('\n') var editorPath = path.join(pkg, 'editor') test('setup', function (t) { cleanup(function (er) { t.ifError(er, 'old directory removed') mkdirp(pkg, '0777', function (er) { fs.writeFileSync(editorPath, editorSrc) fs.chmodSync(editorPath, '0777') t.ifError(er, 'created package directory correctly') t.end() }) }) }) test('saving configs', function (t) { var opts = { cwd: pkg, env: { PATH: process.env.PATH, // We rely on the cwd + relative path combo here because otherwise, // this test will break if there's spaces in the editorPath EDITOR: 'node editor' } } common.npm( [ 'config', '--prefix', pkg, '--global', 'edit' ], opts, function (err, code, stdout, stderr) { t.ifError(err, 'command ran without issue') t.equal(stderr, '', 'got nothing on stderr') t.equal(code, 0, 'exit ok') t.equal(stdout, 'success\n', 'got success message') t.end() } ) }) test('cleanup', function (t) { cleanup(function (er) { t.ifError(er, 'test directory removed OK') t.end() }) }) function cleanup (cb) { rimraf(pkg, cb) }