Skip to content

Commit 7f46755

Browse files
test: add failing test cases for prod React apps
When testing a production React application Puppeteer is unable to serialise the elements due to circular references from React Fiber. The tests include a basic `getByText` test and another for checking refetching after a key change. The later is important as key changes are common in React. Skip the tests until they pass with Puppeteer as well.
1 parent 9c7e63c commit 7f46755

File tree

2 files changed

+53
-0
lines changed

2 files changed

+53
-0
lines changed

test-app/index.html

+33
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,14 @@
2121
content: 'Named by pseudo element';
2222
}
2323
</style>
24+
<script
25+
crossorigin
26+
src="https://unpkg.com/react@17/umd/react.production.min.js"
27+
></script>
28+
<script
29+
crossorigin
30+
src="https://unpkg.com/react-dom@17/umd/react-dom.production.min.js"
31+
></script>
2432
<script>
2533
define = function (){}
2634
define.amd = {}
@@ -139,12 +147,17 @@ <h2>Simmer</h2>
139147
</div>
140148
</div>
141149
</section>
150+
151+
<div id="react-root"></div>
152+
142153
<!-- Prettier unindents the script tag below -->
143154
<script>
144155
document
145156
.querySelector('[data-testid="image-with-random-alt-tag"]')
146157
.setAttribute('alt', 'Image Random Alt Text ' + Math.random())
147158
</script>
159+
160+
<!-- utils -->
148161
<script>
149162
function createButton(text) {
150163
const button = document.createElement('button')
@@ -162,5 +175,25 @@ <h2>Simmer</h2>
162175
createButton('Long Delayed Button Text')
163176
}, 2000)
164177
</script>
178+
179+
<!-- React app -->
180+
<script>
181+
const Root = () => {
182+
const [titleKey, setTitleKey] = React.useState('initial')
183+
return React.createElement(
184+
React.StrictMode,
185+
undefined,
186+
React.createElement('section', undefined, [
187+
React.createElement('h2', {key: titleKey, id: 'react-title'}, 'React'),
188+
React.createElement('button', { onClick: () => setTitleKey('updated') }, 'Recreate React Title'),
189+
]),
190+
)
191+
}
192+
193+
ReactDOM.render(
194+
React.createElement(Root),
195+
document.getElementById('react-root'),
196+
)
197+
</script>
165198
</body>
166199
</html>

test/async/queries.e2e.ts

+20
Original file line numberDiff line numberDiff line change
@@ -183,4 +183,24 @@ describe('queries', () => {
183183

184184
expect(await getByText('High depth non-specific div one')).not.toBeNull()
185185
})
186+
187+
// This tests fails when using Puppeteer, but passes when using other services
188+
it.skip('findByText works for elements in production React app', async () => {
189+
const {findByText} = setupBrowser(browser)
190+
191+
expect(await findByText('React')).not.toBeNull()
192+
})
193+
194+
// This tests fails when using Puppeteer, but passes when using other services
195+
it.skip('refetching works when React key changes and element recreated', async () => {
196+
const {findByText} = setupBrowser(browser)
197+
198+
const title = await findByText('React')
199+
const recreateTitleButton = await findByText('Recreate React Title')
200+
await recreateTitleButton.click()
201+
202+
const refetchedTitle = await refetchElement(title, '')
203+
expect(refetchedTitle).not.toBeNull()
204+
expect(await refetchedTitle.getAttribute('id')).toEqual('react-title')
205+
})
186206
})

0 commit comments

Comments
 (0)