add code coverage

This commit is contained in:
2016-02-09 05:39:31 +01:00
parent 3f0b2b1599
commit 13c9c96cc6
34 changed files with 1053 additions and 384 deletions

View File

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