Update brush.test.tsx

pull/92/head
Steve Ruiz 2021-09-17 22:22:42 +01:00
rodzic faaa043ade
commit a3414f2b20
1 zmienionych plików z 12 dodań i 1 usunięć

Wyświetl plik

@ -4,6 +4,17 @@ import { Brush } from './brush'
describe('brush', () => {
test('mounts component without crashing', () => {
renderWithSvg(<Brush />)
renderWithSvg(
<Brush
brush={{
minX: 0,
maxX: 100,
minY: 0,
maxY: 100,
width: 100,
height: 100,
}}
/>
)
})
})