���� 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 : /home/real/node-v13.0.1/deps/npm/test/tap/ |
'use strict' var test = require('tap').test var Tacks = require('tacks') var File = Tacks.File var Dir = Tacks.Dir var common = require('../common-tap.js') var testdir = common.pkg var fixture = new Tacks(Dir({ 'package.json': File( '{\n' + "'name': 'some-name',\n" + "'dependencies': {}\n" + '}' ), 'node_modules': Dir() })) function setup () { fixture.create(testdir) } function cleanup () { fixture.remove(testdir) } test('setup', function (t) { cleanup() setup() t.end() }) test('failing to parse package.json should be error', function (t) { common.npm( ['install'], {cwd: testdir}, function (err, code, stdout, stderr) { if (err) throw err t.equal(code, 1, 'exit not ok') t.similar(stderr, /npm ERR! JSON.parse Failed to parse json/) t.end() } ) }) test('cleanup', function (t) { cleanup() t.end() })