May 2019
Intermediate to advanced
496 pages
10h 38m
English
Let's begin by building out the childrenOf function, which lists all the direct children of a component instance:
import React from 'react';import { childrenOf } from './shallowHelpers';describe('childrenOf', () => { it('returns no children', () => { expect(childrenOf(<div />)).toEqual([]); ...Read now
Unlock full access