mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
959 B
52 lines
959 B
'use strict'
|
|
var path = require('path')
|
|
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 = path.join(__dirname, path.basename(__filename, '.js'))
|
|
|
|
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! Failed to parse json/)
|
|
t.end()
|
|
}
|
|
)
|
|
})
|
|
|
|
test('cleanup', function (t) {
|
|
cleanup()
|
|
t.end()
|
|
})
|
|
|
|
|