smoke.spec.ts 180 B

12345678
  1. import { describe, expect, it } from 'vitest';
  2. import { pkg } from '../src/index';
  3. describe('包冒烟', () => {
  4. it('可导入', () => {
  5. expect(pkg).toBeTruthy();
  6. });
  7. });