certd/packages/core/pipeline/test/index.test.ts

17 lines
492 B
TypeScript

import { expect } from "chai";
import "mocha";
import { EchoPlugin } from "./echo-plugin";
describe("task_plugin", function () {
it("#taskplugin", function () {
console.log("before new plugin");
const echoPlugin = new EchoPlugin();
console.log("before set property", echoPlugin);
echoPlugin.cert = { test: 1 };
console.log("before execute");
// @ts-ignore
echoPlugin.execute();
console.log("after execute");
expect(echoPlugin.cert.test).eq(1);
});
});