axios-miniprogram/test/core/dispatchRequest.test.ts

9 lines
266 B
TypeScript
Raw Normal View History

2023-04-09 15:20:10 +08:00
import { describe, test, expect } from 'vitest';
import { dispatchRequest } from 'src/core/dispatchRequest';
describe('src/core/dispatchRequest.ts', () => {
test('应该有这些实例属性', () => {
expect(dispatchRequest).toBeTypeOf('function');
});
});