test.spec.ts 444 B

12345678910111213141516
  1. // import { mount } from '@vue/test-utils';
  2. // import { Button } from '/@/components/Button';
  3. test('if jest is normal.', async () => {
  4. expect('jest').toEqual('jest');
  5. });
  6. // TODO Vue component testing is not supported temporarily
  7. // test('is a Vue instance.', async () => {
  8. // const wrapper = mount(Button, {
  9. // slots: {
  10. // default: 'Button text',
  11. // },
  12. // });
  13. // expect(wrapper.html()).toContain('Button text');
  14. // });