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
684 B
33 lines
684 B
var fs = require('fs')
|
|
var path = require('path')
|
|
|
|
var rimraf = require('rimraf')
|
|
var tap = require('tap')
|
|
|
|
var init = require('../')
|
|
|
|
var EXPECT = {
|
|
name: '@scoped/test',
|
|
version: '1.0.0',
|
|
description: '',
|
|
author: '',
|
|
scripts: { test: 'echo \"Error: no test specified\" && exit 1' },
|
|
main: 'basic.js',
|
|
keywords: [],
|
|
license: 'ISC'
|
|
}
|
|
|
|
tap.test('--yes with scope', function (t) {
|
|
init(__dirname, __dirname, { yes: 'yes', scope: '@scoped' }, function (er, data) {
|
|
if (er) throw er
|
|
|
|
console.log('')
|
|
t.has(data, EXPECT)
|
|
t.end()
|
|
})
|
|
})
|
|
|
|
tap.test('teardown', function (t) {
|
|
rimraf.sync(path.join(__dirname, 'package.json'))
|
|
t.end()
|
|
})
|
|
|