@instructure/ui-test-utils
v10.10.0
Published
A UI testing library made by Instructure Inc.
Downloads
15,806
Maintainers
Keywords
Readme
category: packages
ui-test-utils
A UI testing library made by Instructure Inc.
Installation
npm install @instructure/ui-test-utils
Usage
---
type: code
---
import { mount, expect, find } from '@instructure/ui-test-utils'
import MyComponent from '../'
it('should render children', async () => {
await mount(<MyComponent>Hello World</MyComponent>)
expect(await find(':contains(Hello World)')).to.exist()
})