@roo-ui/components
Version:
9 lines • 370 B
JavaScript
import React from 'react';
import { qantas as theme } from '@roo-ui/themes';
import { shallowWithTheme } from '@roo-ui/test-utils';
import CalendarWeekday from '.';
describe('<CalendarWeekday />', function () {
it('renders correctly', function () {
expect(shallowWithTheme(React.createElement(CalendarWeekday, null, "Tuesday"), theme)).toMatchSnapshot();
});
});