11 lines
352 B
JavaScript
Raw Normal View History

2016-02-09 05:39:31 +01:00
/// <reference path="./typings/main.d.ts" />
2016-02-01 00:24:08 +01:00
console.log("**** starting test ****");
2016-02-09 05:39:31 +01:00
var testplugin = require("../index.js");
describe("testplugins", function () {
describe(".logSomething", function () {
it("should log something", function () {
testplugin.logSomething();
});
});
});
2016-01-30 04:57:24 +01:00
//# sourceMappingURL=test.js.map