exthos
Version:
stream processing in nodejs using the power of golang
17 lines • 595 B
JavaScript
import exthos from "./index";
describe("test group description", () => {
beforeAll(() => {
exthos.engine.onAny((eventName, eventObj) => {
if (eventName === "engine.fatal") {
throw new Error(eventObj["msg"] ||
"engine.fatal occured, but msg was absent in the eventObj.msg");
}
});
exthos.engine.updateEngineConfigs({
logger: { level: "NONE", format: "json" },
});
});
test("engine start and stop from src/index.js", async () => {
});
});
//# sourceMappingURL=index.test.js.map