DmnChzl / ReadWrite

Another note-taking application...
Other
0 stars 0 forks source link

ColorPicker: Unit Testing #5

Open DmnChzl opened 9 months ago

DmnChzl commented 9 months ago
import { render } from '@testing-library/vue';
import { describe, expect, test } from 'vitest';
import ColorPicker from '../ColorPicker.vue';

describe('<ColorPicker />', () => {
  test('Should Emit Pick Event', () => {
    render(ColorPicker);

    // TODO: expect();
  });

  test('Should Emit Event Returns Values', () => {
    render(ColorPicker);

    // TODO: expect();
  });

  test('Should Triggers Pick Event x3', () => {
    render(ColorPicker);

    // TODO: expect();
  });
});
DmnChzl commented 9 months ago

test/colorpicker