Cannot assign to read only property 'Config' of object '[object Module]'
IncPlusPlus opened this issue · 1 comments
IncPlusPlus commented
Hi there. Thanks for making such an awesome library. I dusted off an old project, updated all its dependencies, moved from CJS to ESM, and spent some time getting it to compile and run again. Now I'm fixing up my tests and I've run into an interesting error.
TypeError: Cannot assign to read only property 'Config' of object '[object Module]'
at new MockManager (node_modules\ts-mock-imports\src\managers\mock-manager.ts:17:33)
at Function.ImportMock.mockClass (node_modules\ts-mock-imports\src\import-mock.ts:10:31)
at Context.<anonymous> (file:///C:/Users/reach/IdeaProjects/csgo-demo-helper/test/services/DemoPlaybackHelper.test.ts:38:33)
at processImmediate (node:internal/timers:476:21)
Problematic code:
import {ImportMock, MockManager} from 'ts-mock-imports';
import * as configModule from '../../src/utils/Config';
let configMock: MockManager<configModule.Config>;
configMock = ImportMock.mockClass(configModule, 'Config');
configMock.mock('getConfig', config);
Snippet of Config.ts
export class Config {
private readonly config: { [p: string]: any };
public getConfig = (): { [p: string]: any } => {
return this.config;
}
}
When ImportMock.mockClass()
is run, I get the above error. I was curious if this is different than #24 or if it's the same but the wording of the error has changed. #24 is caused by a change made in Typescript 3.9 but my code was on Typescript 4.1.3 previously with the mocks working just fine which is what makes me curious if this issue could be different.