Vitest Vite 原生單元測試框架這個話題社群討論了很多次,但隨著版本迭代,很多結論需要更新。本文基於最新版本重新梳理。
入門指南
先來看基本的實現方式:
javascript
import { render, screen, waitFor } from '@testing-library/react'
import userEvent from '@testing-library/user-event'
import { LoginForm } from './LoginForm'
describe('LoginForm', () => {
it('提交有效的登入表單', async () => {
const onSubmit = jest.fn()
render(<LoginForm onSubmit={onSubmit} />)
await userEvent.type(screen.getByLabelText(/郵箱/), 'user@example.com')
await userEvent.type(screen.getByLabelText(/密碼/), 'password123')
await userEvent.click(screen.getByRole('button', { name: /登入/ }))
await waitFor(() => {
expect(onSubmit).toHaveBeenCalledWith({
email: 'user@example.com', password: 'password123'
})
})
})
})
這段程式碼展示了基本的使用方式。實際專案中還需要考慮錯誤處理和邊界條件。
原始碼分析
在這個基礎上,我們可以進一步最佳化:
javascript
module.exports = {
entry: './src/index.js',
output: { path: __dirname + '/dist', filename: '[name].[contenthash:8].js' },
module: {
rules: [
{ test: /\.jsx?$/, exclude: /node_modules/, use: 'babel-loader' },
{ test: /\.css$/, use: ['style-loader', 'css-loader', 'postcss-loader'] }
]
},
optimization: {
splitChunks: {
chunks: 'all',
cacheGroups: {
vendor: { test: /[\\/]node_modules[\\/]/, name: 'vendors' }
}
}
}
}
這種模式在大型專案中非常實用,能顯著降低維護成本。
真實場景應用
實際專案中的用法會更復雜一些:
javascript
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { resolve } from 'path'
export default defineConfig({
plugins: [vue()],
resolve: { alias: { '@': resolve(__dirname, 'src') } },
server: {
port: 3000,
proxy: { '/api': { target: 'http://localhost:8080', changeOrigin: true } }
},
build: {
rollupOptions: {
output: {
manualChunks: {
vendor: ['vue', 'vue-router', 'pinia'],
utils: ['lodash-es', 'dayjs']
}
}
}
}
})
通過這種方式,程式碼的可測試性和可擴充套件性都得到了提升。
最佳化技巧
以下是一個完整的示例:
javascript
import { test, expect } from '@playwright/test'
test.describe('使用者登入流程', () => {
test('成功登入跳轉到首頁', async ({ page }) => {
await page.goto('/login')
await page.fill('[data-testid="email"]', 'admin@example.com')
await page.fill('[data-testid="password"]', 'admin123')
await page.click('[data-testid="submit-btn"]')
await expect(page).toHaveURL('/dashboard')
await expect(page.locator('.welcome')).toContainText('歡迎回來')
})
})
注意邊界條件處理,這在生產環境中至關重要。
小結
- 關注社群動態,技術方案需要持續迭代
- 不要為了用新技術而用新技術
- 程式碼示例僅供參考,需根據業務場景調整