May 2019
Intermediate to advanced
496 pages
10h 38m
English
We can now begin our table:
describe('time slot table', () => { it('renders a table for time slots', () => { render(<AppointmentForm />); expect( container.querySelector('table#time-slots') ).not.toBeNull(); });});
Define a new TimeSlotTable component, above the definition of AppointmentForm. We don't need to mark this one as an export as it will only be referenced by AppointmentForm:
const TimeSlotTable ...Read now
Unlock full access