9 lines
279 B
TypeScript
9 lines
279 B
TypeScript
/// <reference path="../ts/typings/index.d.ts" />
|
|
var testplugin = require("../dist/index.js");
|
|
describe("testplugins",function(){
|
|
describe(".logSomething",function(){
|
|
it("should log something",function(){
|
|
testplugin.logSomething()
|
|
});
|
|
});
|
|
}); |