start work on smartdeploy package

This commit is contained in:
LosslessBot
2016-04-20 02:13:48 +02:00
parent 97b58c3655
commit 9587dc7850
14 changed files with 107 additions and 2 deletions

12
test/test.js Normal file
View File

@ -0,0 +1,12 @@
/// <reference path ="../ts/typings/main.d.ts" />
var smartDeploy = require("../dist/index.js");
describe("smartdeploy", function () {
describe(".check", function () {
describe(".docker()", function () {
it("should display docker information", function () {
smartDeploy.check.docker();
});
});
});
});
//# sourceMappingURL=test.js.map

1
test/test.js.map Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"test.js","sourceRoot":"","sources":["test.ts"],"names":[],"mappings":"AAAA,iDAAiD;AACjD,IAAI,WAAW,GAAG,OAAO,CAAC,kBAAkB,CAAC,CAAC;AAG9C,QAAQ,CAAC,aAAa,EAAC;IACnB,QAAQ,CAAC,QAAQ,EAAC;QACd,QAAQ,CAAC,WAAW,EAAC;YACjB,EAAE,CAAC,mCAAmC,EAAC;gBACnC,WAAW,CAAC,KAAK,CAAC,MAAM,EAAE,CAAC;YAC/B,CAAC,CAAC,CAAC;QACP,CAAC,CAAC,CAAC;IACP,CAAC,CAAC,CAAC;AAEP,CAAC,CAAC,CAAC"}

14
test/test.ts Normal file
View File

@ -0,0 +1,14 @@
/// <reference path ="../ts/typings/main.d.ts" />
let smartDeploy = require("../dist/index.js");
describe("smartdeploy",function(){
describe(".check",function(){
describe(".docker()",function(){
it("should display docker information",function(){
smartDeploy.check.docker();
});
});
});
});