smartdeploy/test/test.ts

14 lines
356 B
TypeScript
Raw Normal View History

2016-04-20 00:13:48 +00:00
/// <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();
});
});
});
});