test(base-scenario): creates nixt testing base

This commit is contained in:
Stephan Bönnemann
2015-07-09 02:10:38 +02:00
parent 9a3d9a9280
commit 4d58af7145
3 changed files with 15 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
const nixt = require('nixt')
module.exports = function (cwd, uri) {
return nixt()
.cwd(cwd)
.env('NPM_OLD_TOKEN', 'aW50ZWdyYXRpb246c3VjaHNlY3VyZQ==')
.env('NPM_EMAIL', 'integration@test.com')
.env('GH_TOKEN', 'ghtoken')
.env('CI', true)
.env('npm_config_registry', uri)
.env('npm_config_loglevel', 'info')
.clone()
}