UNPKG

@roo-ui/components

Version:

14 lines 469 B
import React from 'react'; import { qantas as theme } from '@roo-ui/themes'; import { shallowWithTheme } from '@roo-ui/test-utils'; import CalendarWeekdays from '.'; var props = { month: 7, year: 2018, weekdayNames: ['S', 'M', 'T', 'W', 'T', 'F', 'S'] }; describe('<CalendarWeekdays />', function () { it('renders correctly', function () { expect(shallowWithTheme(React.createElement(CalendarWeekdays, props, "Weekday"), theme)).toMatchSnapshot(); }); });