Skip to content

Commit 65735bc

Browse files
committed
skip some tests
1 parent a9cf700 commit 65735bc

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

packages/css/test/instance/stream.test.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ describe('renderStylesToNodeStream', () => {
3434
).toMatchSnapshot()
3535
})
3636
})
37-
test('renders large recursive component', async () => {
37+
38+
// blocked on https://github.com/facebook/react/issues/31754
39+
test.skip('renders large recursive component', async () => {
3840
await disableBrowserEnvTemporarily(async () => {
3941
resetAllModules()
4042
const BigComponent = util.createBigComponent(emotion)

packages/server/test/inline.test.js

+2
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ describe('renderStylesToString', () => {
5050
expect(output).toMatchSnapshot()
5151
})
5252
})
53+
54+
// blocked on https://github.com/facebook/react/issues/31754
5355
test.skip('renders large recursive component', async () => {
5456
await disableBrowserEnvTemporarily(() => {
5557
resetAllModules()

packages/server/test/stream.test.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ describe('renderStylesToNodeStream', () => {
3434
).toMatchSnapshot()
3535
})
3636
})
37-
test('renders large recursive component', async () => {
37+
38+
// blocked on https://github.com/facebook/react/issues/31754
39+
test.skip('renders large recursive component', async () => {
3840
await disableBrowserEnvTemporarily(async () => {
3941
resetAllModules()
4042
const BigComponent = util.createBigComponent(emotion)

0 commit comments

Comments
 (0)