tscoverage/test/assets/test/test.ts
2016-05-19 22:11:18 +02:00

9 lines
279 B
TypeScript

/// <reference path="../ts/typings/index.d.ts" />
var testplugin = require("../dist/index.js");
describe("testplugins",function(){
describe(".logSomething",function(){
it("should log something",function(){
testplugin.logSomething()
});
});
});