()
| 21 | // eslint-disable-next-line |
| 22 | const HOC = class extends Component { |
| 23 | componentDidMount() { |
| 24 | // eslint-disable-next-line |
| 25 | const page = this.props.location.pathname + this.props.location.search; |
| 26 | trackPage(`${BASENAME}${page}`); |
| 27 | } |
| 28 | |
| 29 | componentDidUpdate(prevProps) { |
| 30 | const currentPage = |
nothing calls this directly
no test coverage detected