当我使用 Jest 测试 Angular AG Grid 时,出现以下错误:
Cannot read properties of null (reading 'injector')
我试图在我的测试中添加这个:
TestBed.resetTestEnvironment();
TestBed.initTestEnvironment(BrowserDynamicTestingModule, platformBrowserDynamicTesting());
它解决了这个问题。但是一旦我想使用LicenseManager
AG Grid,我就会收到以下错误:
Error: A platform with a different configuration has been created. Please destroy it first.
你知道为什么吗?