init: 初始化模板项目
This commit is contained in:
54
apps/next/__tests__/dev.test.ts
Normal file
54
apps/next/__tests__/dev.test.ts
Normal file
@@ -0,0 +1,54 @@
|
||||
import { spawn, type ChildProcess } from 'node:child_process'
|
||||
import { expect, test } from 'vitest'
|
||||
import path from 'node:path'
|
||||
import treeKill from 'tree-kill'
|
||||
import { promisify } from 'node:util'
|
||||
|
||||
const treeKillAsync = promisify(treeKill)
|
||||
|
||||
test('Next.js dev server starts', async () => {
|
||||
let devProcess: ChildProcess | null = null
|
||||
|
||||
try {
|
||||
devProcess = spawn('yarn', ['dev'], {
|
||||
cwd: path.resolve(__dirname, '..'),
|
||||
stdio: 'pipe',
|
||||
shell: true,
|
||||
})
|
||||
|
||||
let output = ''
|
||||
devProcess.stdout?.on('data', (data) => {
|
||||
output += data.toString()
|
||||
})
|
||||
|
||||
// Wait for the server to start (adjust timeout as needed)
|
||||
await new Promise<void>((resolve, reject) => {
|
||||
const timeout = setTimeout(() => {
|
||||
reject(new Error('Timeout waiting for dev server to start'))
|
||||
}, 30000)
|
||||
|
||||
devProcess?.stdout?.on('data', (data) => {
|
||||
if (data.toString().includes('Ready in')) {
|
||||
clearTimeout(timeout)
|
||||
resolve()
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
// Check for expected output
|
||||
expect(output).toContain('Next.js 14')
|
||||
expect(output).toContain('Local:')
|
||||
expect(output).toContain('Ready in')
|
||||
|
||||
// Additional checks can be added here
|
||||
} finally {
|
||||
// Ensure the dev server is killed and wait for it to fully terminate
|
||||
if (devProcess?.pid) {
|
||||
try {
|
||||
await treeKillAsync(devProcess.pid)
|
||||
} catch (error) {
|
||||
console.error('Failed to kill process:', error)
|
||||
}
|
||||
}
|
||||
}
|
||||
}, 60000) // Increased timeout to account for both startup and shutdown
|
||||
Reference in New Issue
Block a user