Sha256: b194010cb53b66610c36f6da623f2d40d88490f844a09b76e14acff583b42928
Contents?: true
Size: 877 Bytes
Versions: 619
Compression:
Stored size: 877 Bytes
Contents
/* eslint-disable no-unused-vars */ import { ensureAccessible, render, renderKit, screen } from '../utilities/test-utils' import React from 'react' import { Walkthrough } from '../' /* 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 */ const testId = 'walkthroughKitTest', kitClass = 'pb_walkthrough' test('expect kit to exist', () => { const props = { data: { testid: testId }, } const kit = renderKit(Walkthrough, props) expect(kit).toBeInTheDocument() expect(kit).toHaveClass(kitClass) }) test('returns namespaced class name', () => { render( <Walkthrough className="additional_class" data={{ testid: testId }} /> ) const kit = screen.getByTestId(testId) expect(kit).toHaveClass('additional_class') })
Version data entries
619 entries across 619 versions & 1 rubygems