10 lines
321 B
JavaScript
10 lines
321 B
JavaScript
/// <reference path="../ts/typings/main.d.ts" />
|
|
var testplugin = require("../dist/index.js");
|
|
describe("testplugins", function () {
|
|
describe(".logSomething", function () {
|
|
it("should log something", function () {
|
|
testplugin.logSomething();
|
|
});
|
|
});
|
|
});
|
|
//# sourceMappingURL=test.js.map
|