16 lines
311 B
TypeScript
16 lines
311 B
TypeScript
import { describe, vi, beforeEach } from 'vitest';
|
|
|
|
vi.mock('@umijs/max');
|
|
vi.mock('@/services/api');
|
|
|
|
import { smokeTest } from '../../../../test/smoke';
|
|
import Page from './index';
|
|
|
|
describe('Production / Plans / index page', () => {
|
|
beforeEach(() => {
|
|
vi.clearAllMocks();
|
|
});
|
|
|
|
smokeTest(Page);
|
|
});
|