Skip to content

Instantly share code, notes, and snippets.

View pedro-mass's full-sized avatar
🎯

Pedro Mass pedro-mass

🎯
View GitHub Profile
@pedro-mass
pedro-mass / test-helpers.js
Last active March 3, 2024 20:05
Test Helpers
// @ts-check
// ref: https://github.com/pedro-mass/learn/blob/b07f49b56802646e4e05137a0ff77219508c29c8/javascript/code-katas/src/test-helpers.js
import React from "react";
import partial from "lodash/partial";
import { Provider } from "react-redux";
import { createStore } from "./redux/store";
import { arrayify } from "./utils/array";
export { createStore };