You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using v 4.1.0 and stumbled upon the issue that the MockAdapter has no method getForeignStatesAsync:
// Create instance
let adapter: MockAdapter;
adapter = utils.unit.createMocks({ name: 'xyz' }).adapter;
// Use it in a test
adapter.getForeignStatesAsync.resolves(testRecord); // <-- TypeError: Cannot read properties of undefined (reading 'resolves')
Looking at the mock at runtime reveales that there actually really is no function getForeignStatesAsync (although I get full auto completion support in the editor for example):
I looked at the code but I am not JS pro enough to get an idea why this method is missing at runtime.
KR
The text was updated successfully, but these errors were encountered:
Hi there,
I am using v 4.1.0 and stumbled upon the issue that the MockAdapter has no method getForeignStatesAsync:
Looking at the mock at runtime reveales that there actually really is no function getForeignStatesAsync (although I get full auto completion support in the editor for example):
I looked at the code but I am not JS pro enough to get an idea why this method is missing at runtime.
KR
The text was updated successfully, but these errors were encountered: