start work on smartdeploy package
This commit is contained in:
12
test/test.js
Normal file
12
test/test.js
Normal 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
1
test/test.js.map
Normal 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
14
test/test.ts
Normal 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();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
});
|
Reference in New Issue
Block a user