Files
tscoverage/test/assets/test/test.ts
2016-02-17 05:45:42 +01:00

10 lines
318 B
TypeScript

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