Skip to content

Instantly share code, notes, and snippets.

@axelnormand
axelnormand / jest.setup.js
Created July 30, 2018 11:13
React Native Jest
// Setup for use with enzyme
// Patching console.error so test will fail
const Enzyme = require('enzyme');
const Adapter = require('enzyme-adapter-react-16');
Enzyme.configure({ adapter: new Adapter() });
//fix redux saga test plan which needs setTimeout on window
global.window.setTimeout = global.setTimeout;
@axelnormand
axelnormand / machine.js
Last active October 7, 2020 14:01
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)
@axelnormand
axelnormand / machine.js
Created October 8, 2020 16:21
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)
@axelnormand
axelnormand / machine.js
Last active December 1, 2020 11:37
Generated by XState Viz: https://xstate.js.org/viz
//
// Paste into: https://xstate.js.org/viz/
// Trying out a state chart to model the idea flow
//
// Available variables:
// - Machine
// - interpret
// - assign
// - send
@axelnormand
axelnormand / Link.tsx
Created May 13, 2021 11:52 — forked from tj-mc/Link.tsx
rnw-link-component