audio.test.tsx 461 B

1234567891011121314
  1. // import { afterAll, beforeAll, describe, expect, test, vi } from 'vitest';
  2. // import Audio from '../src/audio.vue';
  3. // import type { VNode } from 'vue'
  4. // const _mount = (render: () => VNode) => {
  5. // return mount(render, { attachTo: document.body })
  6. // }
  7. // describe('Audio.vue', () => {
  8. // test('render test', async () => {
  9. // const wrapper = _mount(() => <Audio>{AXIOM}</Audio>)
  10. // await nextTick()
  11. // }
  12. // });