Skip to content

Commit

Permalink
chore(snapshots): updated test snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
kwelch committed May 1, 2017
1 parent 6f41169 commit 2ed69b8
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
14 changes: 13 additions & 1 deletion src/__test__/__snapshots__/index.spec.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,12 @@ const Component = () => {
}
};
};
class ToDoComponent {
render() {
console.log(this.props);
}
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
console.log(\\"all.js(1:0)\\", \\"a\\", a);
console.log(\\"all.js(2:0)\\", a.length);
Expand Down Expand Up @@ -107,7 +113,13 @@ const Component = () => {
console.log(\\"all.js(50:6)\\", \\"Component.HighOrderComponent.render:\\", 2);
}
};
};"
};
class ToDoComponent {
render() {
console.log(\\"all.js(57:4)\\", \\"ToDoComponent.render:\\", this.props);
}
}"
`;

exports[`method.js 1`] = `
Expand Down
14 changes: 13 additions & 1 deletion src/__test__/__snapshots__/logMethodOnly.spec.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,12 @@ const Component = () => {
}
};
};
class ToDoComponent {
render() {
console.log(this.props);
}
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
console.log(\\"all.js(1:0)\\", \\"a\\", a);
console.log(\\"all.js(2:0)\\", a.length);
Expand Down Expand Up @@ -107,7 +113,13 @@ const Component = () => {
console.log(\\"all.js(50:6)\\", \\"Component.HighOrderComponent.render:\\", 2);
}
};
};"
};
class ToDoComponent {
render() {
console.log(\\"all.js(57:4)\\", \\"ToDoComponent.render:\\", this.props);
}
}"
`;

exports[`method.js 1`] = `
Expand Down

0 comments on commit 2ed69b8

Please sign in to comment.