| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /**
- * Jest 测试环境设置文件
- */
- // 配置测试环境
- import { config } from '@vue/test-utils';
- import ElementUI from 'element-ui';
- // 全局注册ElementUI
- config.global.plugins = [ElementUI];
- // Mock window对象
- Object.defineProperty(window, 'location', {
- value: {
- href: 'http://localhost:8080',
- origin: 'http://localhost:8080',
- protocol: 'http:',
- host: 'localhost:8080',
- hostname: 'localhost',
- port: '8080',
- pathname: '/',
- search: '',
- hash: ''
- },
- writable: true
- });
- // Mock localStorage
- const localStorageMock = {
- getItem: jest.fn(),
- setItem: jest.fn(),
- removeItem: jest.fn(),
- clear: jest.fn()
- };
- global.localStorage = localStorageMock;
- // Mock sessionStorage
- const sessionStorageMock = {
- getItem: jest.fn(),
- setItem: jest.fn(),
- removeItem: jest.fn(),
- clear: jest.fn()
- };
- global.sessionStorage = sessionStorageMock;
- // Mock console方法以避免测试输出污染
- global.console = {
- ...console,
- log: jest.fn(),
- debug: jest.fn(),
- info: jest.fn(),
- warn: jest.fn(),
- error: jest.fn()
- };
|