Sha256: fcae462a3e1b6b4587550bc8609b369319e1c27c312cca406d7818c42e0ec733
Contents?: true
Size: 572 Bytes
Versions: 50
Compression:
Stored size: 572 Bytes
Contents
import React from 'react' import { render, screen } from '../utilities/test-utils' import { Dialog } from '../' /* eslint-disable jsx-control-statements/jsx-jcs-no-undef */ /* See these resources for more testing info: - https://github.com/testing-library/jest-dom#usage for useage and examples - https://jestjs.io/docs/en/using-matchers */ test('generated scaffold test - update me', () => { const testId = 'test1' render( <Dialog data={{ testid: testId }} /> ) const kit = screen.getByTestId(testId) expect(kit).toBeInTheDocument() })
Version data entries
50 entries across 50 versions & 1 rubygems