import * as React from 'react';
import { render } from '../../../../vitest/render';
import { DatePicker } from './DatePicker';
describe('DatePicker component', () => {
it('DatePicker with valid value', () => {
const { container } = render();
expect(container).toMatchInlineSnapshot(`
`);
});
it('DatePicker with loading', () => {
const { container } = render();
expect(container).toMatchInlineSnapshot(`
`);
});
it('DatePicker with error', () => {
const { container } = render();
expect(container).toMatchInlineSnapshot(`
`);
});
it('DatePicker with warning', () => {
const { container } = render();
expect(container).toMatchInlineSnapshot(`
`);
});
it('DatePicker with disabled', () => {
const { container } = render();
expect(container).toMatchInlineSnapshot(`
`);
});
it('DatePicker with required', () => {
const { container } = render();
expect(container).toMatchInlineSnapshot(`
`);
});
it('DatePicker with readOnly', () => {
const { container } = render();
expect(container).toMatchInlineSnapshot(`
`);
});
it('DatePicker with width md', () => {
const { container } = render();
expect(container).toMatchInlineSnapshot(`
`);
});
});