smartdeploy/test/test.ts
2016-04-20 02:13:48 +02:00

14 lines
356 B
TypeScript

/// <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();
});
});
});
});