rsnext/test/integration/client-navigation/pages/nav/self-reload.js
JJ Kasper 7d0919a784 Break up basic test suite (#6730)
* Break out client-navigation and rendering
test from basic test

* Try with parallelism dialed back to 3

* Update jest-junit for more compatible timings in CircleCI

* Bump to test timings

* Use filepath for suitename in jest-junit

* Store reports as artifacts

* Try using classname for timings

* Bump

* Remove reports from artifacts
2019-03-20 11:01:32 +01:00

24 lines
476 B
JavaScript

import { Component } from 'react'
import Link from 'next/link'
let count = 0
export default class SelfReload extends Component {
static getInitialProps ({ res }) {
if (res) return { count: 0 }
count += 1
return { count }
}
render () {
return (
<div id='self-reload-page'>
<Link href='/nav/self-reload'>
<a id='self-reload-link'>Self Reload</a>
</Link>
<p>COUNT: {this.props.count}</p>
</div>
)
}
}