fix: missing implemented methods for test class

This commit is contained in:
FoxxMD
2024-12-11 18:24:42 +00:00
parent 323004a730
commit 78d048ba62
@@ -7,10 +7,17 @@ import { TRANSFORM_HOOK } from "../../common/infrastructure/Atomic.js";
import { isConditionalSearchAndReplace } from "../../utils/PlayTransformUtils.js";
import { asPlays, generatePlay, normalizePlays } from "../utils/PlayTestUtils.js";
import { WebhookPayload } from "../../common/infrastructure/config/health/webhooks.js";
chai.use(asPromised);
class TestComponent extends AbstractComponent {
public notify(payload: WebhookPayload): Promise<void> {
throw new Error("Method not implemented.");
}
protected getIdentifier(): string {
return 'test';
}
constructor() {
super({});
}