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