Skip to content

Instantly share code, notes, and snippets.

View pho3nixf1re's full-sized avatar
🛩️
I'd rather be flying

Matthew Turney pho3nixf1re

🛩️
I'd rather be flying
View GitHub Profile
@pho3nixf1re
pho3nixf1re / keybase.md
Last active August 29, 2015 14:01
Keybase Identification

Keybase proof

I hereby claim:

  • I am pho3nixf1re on github.
  • I am mturney (https://keybase.io/mturney) on keybase.
  • I have a public key whose fingerprint is 01CD 7192 11E4 E977 2AEA 6CF5 0FC0 6F79 FAA0 20CF

To claim this, I am signing this object:

@pho3nixf1re
pho3nixf1re / ava-snapshot-split-error.js
Last active May 11, 2017 16:20
1) Run the test `ava ava-snapshot-split-error.js`. 2) Change 'change me' to something else. 3) Re-run the test to throw the error `TypeError: Cannot read property 'split' of null`.
import React from 'react';
import test from 'ava';
import { render } from 'enzyme';
const TestMe = ({ me }) => (
<div>
<p>{me}</p>
</div>
);