Compare commits

...

2 Commits

Author SHA1 Message Date
08152f9b51 2.3.68 2017-05-25 13:01:36 +02:00
b6f54bc967 update tests 2017-05-25 13:01:17 +02:00
2 changed files with 7 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "npmci",
"version": "2.3.67",
"version": "2.3.68",
"description": "",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
@@ -8,7 +8,7 @@
"npmci": "dist/cli.js"
},
"scripts": {
"test": "(npmts) && (npm run testVersion)",
"test": "(rm -f config.json) && (npmts) && (npm run testVersion)",
"testVersion": "(cd test/assets/ && node ../../dist/cli.js -v)"
},
"repository": {

View File

@@ -15,6 +15,7 @@ import NpmciBuildDocker = require('../dist/mod_docker/index')
import NpmciPublish = require('../dist/mod_publish/index')
import NpmciTest = require('../dist/mod_test/index')
import NpmciSsh = require('../dist/npmci.ssh')
import NpmciEnv = require('../dist/npmci.env')
let dockerfile1: NpmciBuildDocker.Dockerfile
let dockerfile2: NpmciBuildDocker.Dockerfile
@@ -75,4 +76,8 @@ tap.test('reset paths', async () => {
}
})
tap.test('', async () => {
await NpmciEnv.configStore()
})
tap.start()