docker/test/test.ts

14 lines
392 B
TypeScript
Raw Normal View History

2016-06-15 23:56:53 +00:00
import "typings-test";
import "should"
import {Dockersock} from "../dist/index"
describe("dockersock",function(){
describe(".Dockersock()",function(){
let testDockersock:Dockersock;
it("should create a new Dockersock instance",function(){
testDockersock = new Dockersock();
testDockersock.should.be.instanceof(Dockersock);
});
});
});