Skip to content

Commit

Permalink
rename AVA function ok to truthy
Browse files Browse the repository at this point in the history
  • Loading branch information
Granze committed Apr 7, 2016
1 parent 9263b3f commit 471f63d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/components/App-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ test('should contains an H1', t => {
test('should display the title and the version number', t => {
const h1 = <h1>React Starterify {version}</h1>;
const target = app.props.children[0].props.children[0];
t.ok(isEqual(target.props.children, h1.props.children));
t.truthy(isEqual(target.props.children, h1.props.children));
});

0 comments on commit 471f63d

Please sign in to comment.