()
| 49 | |
| 50 | // go to / |
| 51 | async function goFromAnotherToHome() { |
| 52 | await browser.eval('window.didTransition = 1') |
| 53 | await browser.elementByCss('#home').click() |
| 54 | await browser.waitForElementByCss('#another') |
| 55 | text = await browser.elementByCss('p').text() |
| 56 | expect(text).toMatch(/hello.*?world/) |
| 57 | expect(await browser.eval('window.didTransition')).toBe(1) |
| 58 | } |
| 59 | await goFromAnotherToHome() |
| 60 | |
| 61 | // Client-side SSG data caching test |
no test coverage detected