Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add $mock.intersection to Mock module #51

Open
pierroberto opened this issue Oct 26, 2022 · 0 comments
Open

Add $mock.intersection to Mock module #51

pierroberto opened this issue Oct 26, 2022 · 0 comments
Labels
enhancement New feature or request

Comments

@pierroberto
Copy link
Collaborator

$mock module supports only unions of mocks ($mock.union).

It could be useful to have intersections of mocks as follows:

const mockA = $mock.struct({ a: $mock.string })
const mockB = $mock.struct({ b: $mock.number })

const mockC = $mock.intersection(mockA, mockB)

Something similar, currently can be achieved this way:

const mockC = pipe(
  mockA,
  $mock.bindTo('mockA'),
  $mock.apS('mockB', mockB),
  $mock.map(({ mockA, mockB }) => ({
    ...mockA,
    ...mockB,
  }))
)
@pierroberto pierroberto added the enhancement New feature or request label Oct 26, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant