update test Environment
This commit is contained in:
14
test/test.ts
Normal file
14
test/test.ts
Normal 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);
|
||||
});
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user