update test Environment

This commit is contained in:
2016-06-16 01:56:53 +02:00
parent 7049ddc5f2
commit 38dca0c9a0
14 changed files with 162 additions and 92 deletions

14
test/test.ts Normal file
View File

@ -0,0 +1,14 @@
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);
});
});
});