now working

This commit is contained in:
2016-07-19 19:21:06 +02:00
parent 2d5054be0b
commit ca0ecd4e93
20 changed files with 215 additions and 38 deletions

View File

@@ -1,5 +1,12 @@
import * as plugins from "./npmdocker.plugins";
import * as promisechain from "./npmdocker.promisechain";
import * as ConfigModule from "./npmdocker.config";
promisechain.run();
promisechain.run()
.then((configArg:ConfigModule.IConfig) => {
if(configArg.exitCode == 0){
plugins.beautylog.success("Allright test in docker ran through");
}
});