Skip to content

Instantly share code, notes, and snippets.

View simianarmy's full-sized avatar

Marc Mauger simianarmy

View GitHub Profile
@simianarmy
simianarmy / gist:59733e4a70de7129a1241357319eef96
Created January 15, 2019 19:39
Execute commands in docker bash
docker exec -it <image-id> bash
@simianarmy
simianarmy / jsx
Created April 19, 2020 15:34
Partial module mocks with dynamic mocks
import {random} from 'lodash'
jest.mock('lodash', () => {
return {
...jest.requireActual('lodash'),
random: jest.fn(),
}
});
test('get 5', () => {