Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
ts-jest-mock
Advanced tools
A way to get jest type definition infered automagically.
This library takes for granted that you have your tests setup with jest
.
Directly in a test
import { createMock } from 'ts-jest-mock'
import { someFn } from 'module_a'
jest.mock('module_a')
describe('something', () => {
it('some test', () => {
const someFnMock = createMock(someFn)
someFnMock.mockReturnValue('') <-- Type inference yay :)
})
})
Or with a beforeEach pattern
import { createMock } from 'ts-jest-mock'
import { someFn } from 'module_a'
jest.mock('module_a')
const someFnMock = createMock(someFn)
describe('something', () => {
beforeEach(() => {
someFnMock.mockReturnValue('') <-- Type inference yay :)
})
it('some test', () => {
expect(someFnMock).toBe('')
})
})
Thanks goes to these wonderful people (emoji key):
Lucien Bénié 💻 📖 |
This project follows the all-contributors specification. Contributions of any kind welcome!
FAQs
Maps to the proper jest mock type
The npm package ts-jest-mock receives a total of 10,005 weekly downloads. As such, ts-jest-mock popularity was classified as popular.
We found that ts-jest-mock demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.