Skip to content

Commit

Permalink
Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
acdlite committed Mar 4, 2019
1 parent 757a70b commit ce45ca9
Showing 1 changed file with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,13 +188,19 @@ describe('ReactExpiration', () => {
state = {text: store.text};
componentDidMount() {
subscribers.push(this);
Scheduler.yieldValue(`${this.state.text} [${this.props.label}] [commit]`);
Scheduler.yieldValue(
`${this.state.text} [${this.props.label}] [commit]`,
);
}
componentDidUpdate() {
Scheduler.yieldValue(`${this.state.text} [${this.props.label}] [commit]`);
Scheduler.yieldValue(
`${this.state.text} [${this.props.label}] [commit]`,
);
}
render() {
Scheduler.yieldValue(`${this.state.text} [${this.props.label}] [render]`);
Scheduler.yieldValue(
`${this.state.text} [${this.props.label}] [render]`,
);
return <span prop={this.state.text} />;
}
}
Expand Down

0 comments on commit ce45ca9

Please sign in to comment.