forked from vercel/next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject-directory-rename.test.ts
More file actions
70 lines (62 loc) · 1.92 KB
/
project-directory-rename.test.ts
File metadata and controls
70 lines (62 loc) · 1.92 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
63
64
65
66
67
68
69
70
import fs from 'fs-extra'
import webdriver from 'next-webdriver'
import { check, findPort, hasRedbox } from 'next-test-utils'
import { NextInstance } from 'test/lib/next-modes/base'
import { createNext } from 'e2e-utils'
import stripAnsi from 'strip-ansi'
// TODO: investigate occasional failure
describe.skip('Project Directory Renaming', () => {
let next: NextInstance
beforeAll(async () => {
next = await createNext({
files: {
'pages/index.js': `
export default function Page() {
return <p>hello world</p>
}
`,
},
skipStart: true,
forcedPort: (await findPort()) + '',
})
await next.start()
})
afterAll(() => next.destroy().catch(() => {}))
it('should detect project dir rename and restart', async () => {
const browser = await webdriver(next.url, '/')
await browser.eval('window.beforeNav = 1')
let newTestDir = `${next.testDir}-renamed`
await fs.move(next.testDir, newTestDir)
next.testDir = newTestDir
await check(
() => stripAnsi(next.cliOutput),
/Detected project directory rename, restarting in new location/
)
await check(async () => {
return (await browser.eval('window.beforeNav')) === 1 ? 'pending' : 'done'
}, 'done')
expect(await hasRedbox(browser)).toBe(false)
try {
// should still HMR correctly
await next.patchFile(
'pages/index.js',
(
await next.readFile('pages/index.js')
).replace('hello world', 'hello again')
)
await check(async () => {
if (!(await browser.eval('!!window.next'))) {
await browser.refresh()
}
return browser.eval('document.documentElement.innerHTML')
}, /hello again/)
} finally {
await next.patchFile(
'pages/index.js',
(
await next.readFile('pages/index.js')
).replace('hello again', 'hello world')
)
}
})
})