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.
33 lines
918 B
33 lines
918 B
var common = require('../common-tap.js')
|
|
var test = require('tap').test
|
|
var path = require('path')
|
|
var cwd = path.resolve(__dirname, '..', '..')
|
|
var testscript = require('../../package.json').scripts.test
|
|
var tsregexp = testscript.replace(/([\[\.\*\]])/g, '\\$1')
|
|
|
|
test('default', function (t) {
|
|
common.npm(['run'], { cwd: cwd }, function (er, code, so) {
|
|
if (er) throw er
|
|
t.notOk(code)
|
|
t.similar(so, new RegExp('\\n test\\n ' + tsregexp + '\\n'))
|
|
t.end()
|
|
})
|
|
})
|
|
|
|
test('parseable', function (t) {
|
|
common.npm(['run', '-p'], { cwd: cwd }, function (er, code, so) {
|
|
if (er) throw er
|
|
t.notOk(code)
|
|
t.similar(so, new RegExp('\\ntest:' + tsregexp + '\\n'))
|
|
t.end()
|
|
})
|
|
})
|
|
|
|
test('parseable', function (t) {
|
|
common.npm(['run', '--json'], { cwd: cwd }, function (er, code, so) {
|
|
if (er) throw er
|
|
t.notOk(code)
|
|
t.equal(JSON.parse(so).test, testscript)
|
|
t.end()
|
|
})
|
|
})
|
|
|