added event related tests to mutator, fixed tests

This commit is contained in:
dswbx
2025-01-16 10:11:10 +01:00
parent 6c9707d12c
commit aa4aca1a90
13 changed files with 89 additions and 32 deletions

View File

@@ -1,11 +1,5 @@
import { afterAll, beforeAll, describe, expect, mock, test } from "bun:test";
import {
Event,
EventManager,
InvalidEventReturn,
type ListenerHandler,
NoParamEvent
} from "../../src/core/events";
import { Event, EventManager, InvalidEventReturn, NoParamEvent } from "../../src/core/events";
import { disableConsoleLog, enableConsoleLog } from "../helper";
beforeAll(disableConsoleLog);