Endre Bock
Results
1
comments of
Endre Bock
You can just mock the whole YamlJs: ```javascript jest.mock( 'yamljs', function createYamlJsMock() { return {parse: jest.fn()}; } ); import YAML from 'yamljs'; describe('Foo', function testFoo() { it('Bar', function testBar() {...