Mocking PCF lookupObjects to simplify writing stories for your components.
First you should install @shko.online/lookupobjects-mock in your project:
npm i -D @shko.online/lookupobjects-mockthen in your story you add the following call:
import mockLookupObjects from '@shko.online/lookupobjects-mock'
// ...
//before executing Init exectute mockLookupObjects()
// ...
mockLookupObjects(mockGenerator);
mockGenerator.ExecuteInit();
// ...