Slide 14
Slide 14 text
//
!
Test!
// component.test.js
// imports and things
it('should not have any a11y errors', async () => {
// render or mount the component into const container
expect(await axe(container)).toHaveNoViolations();
})
// what's in the expect depends on your
// framework and testing setup