mirror of https://github.com/certd/certd
19 lines
675 B
TypeScript
19 lines
675 B
TypeScript
![]() |
//import { expect } from "chai";
|
||
|
import "mocha";
|
||
|
import { Executor, RunHistory } from "../../src";
|
||
|
import { pipeline } from "./pipeline.define";
|
||
|
import { AccessServiceTest } from "./access-service-test";
|
||
|
import { FileStorage } from "../../src/core/storage";
|
||
|
describe("pipeline", function () {
|
||
|
it("#pipeline", async function () {
|
||
|
this.timeout(120000);
|
||
|
function onChanged(history: RunHistory) {
|
||
|
console.log("changed:");
|
||
|
}
|
||
|
|
||
|
const executor = new Executor({ userId: "test", pipeline, onChanged, accessService: new AccessServiceTest(), storage: new FileStorage() });
|
||
|
await executor.run(1, "user");
|
||
|
// expect(define.name).eq("EchoPlugin");
|
||
|
});
|
||
|
});
|