mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
chore: Update linting dependency
This commit is contained in:
@@ -22,8 +22,8 @@ describe('A ClusterManager', (): void => {
|
||||
beforeAll((): void => {
|
||||
Object.assign(mockCluster, {
|
||||
fork: jest.fn().mockImplementation((): any => mockWorker),
|
||||
on: jest.fn().mockImplementation(emitter.on),
|
||||
emit: jest.fn().mockImplementation(emitter.emit),
|
||||
on: jest.fn().mockImplementation(emitter.on.bind(emitter)),
|
||||
emit: jest.fn().mockImplementation(emitter.emit.bind(emitter)),
|
||||
isMaster: true,
|
||||
isWorker: false,
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user