forked from vercel/next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyled-components-disabled.test.ts
More file actions
62 lines (55 loc) · 1.74 KB
/
styled-components-disabled.test.ts
File metadata and controls
62 lines (55 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import { join } from 'path'
import webdriver from 'next-webdriver'
import { createNext, FileRef } from 'e2e-utils'
import { NextInstance } from 'test/lib/next-modes/base'
import { check, fetchViaHTTP } from 'next-test-utils'
// TODO: Somehow the warning doesn't show up with Turbopack, even though the transform is not enabled.
;(process.env.TURBOPACK ? describe.skip : describe)(
'styled-components SWC transform',
() => {
let next: NextInstance
beforeAll(async () => {
next = await createNext({
files: {
'next.config.js': new FileRef(
join(__dirname, 'styled-components-disabled/next.config.js')
),
pages: new FileRef(
join(__dirname, 'styled-components-disabled/pages')
),
},
dependencies: {
'styled-components': '5.3.3',
},
})
})
afterAll(() => next.destroy())
async function matchLogs$(browser) {
let foundLog = false
const browserLogs = await browser.log('browser')
browserLogs.forEach((log) => {
if (log.message.includes('Warning: Prop `%s` did not match.')) {
foundLog = true
}
})
return foundLog
}
it('should have hydration mismatch with styled-components transform disabled', async () => {
let browser
try {
browser = await webdriver(next.url, '/')
// Compile /_error
await fetchViaHTTP(next.url, '/404')
await check(async () => {
await browser.refresh()
const foundLog = await matchLogs$(browser)
return foundLog ? 'success' : await browser.log('browser')
}, 'success')
} finally {
if (browser) {
await browser.close()
}
}
})
}
)