Mocking Symbol.asyncIterator
OliverNChalk opened this issue · 6 comments
Hey, I was wondering if you knew whether it was possible to mock an asyncIterator
, or an Iterator
? Here's my current (failing) attempt:
const lMockManager = ImportMock.mockClass<Dealer>(Dealer);
let lAsyncIteratorResolve: (value: string) => void;
// @ts-ignore
lMockManager.mock(Symbol.asyncIterator, () =>
{
return {
current: 0,
last: 2,
async next()
{
return new Promise(resolve =>
{
lAsyncIteratorResolve = resolve;
});
},
};
});
Here's also a typescript example of duplicating an object including iterator.
Here is a commit (OliverNChalk@ba0518f) that adds support for symbols as method identifiers on classes. However, it is not ready for merge as there is still some issues around type support and I have not added any tests.
Is supporting symbol identifiers something you would consider for this package in the future?
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Mark the issue as fresh with /remove-lifecycle stale
.
Thank you for your contributions.
/remove-lifecycle stale
Would be interested in getting symbol
support into the npm package if possible
/remove-lifecycle stale
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Mark the issue as fresh with /remove-lifecycle stale
.
Thank you for your contributions.
/remove-lifecycle stale