Sha256: 2a1877983df16c8dd46cac75ccd646b94885242fa20a1b4eebdda318748d13ac

Contents?: true

Size: 508 Bytes

Versions: 2

Compression:

Stored size: 508 Bytes

Contents

import React from 'react'
import { render, screen } from '../utilities/test-utils'
import { Inline } 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
*/

test('generated scaffold test - update me', () => {
  const testId = "test1"

  render(
    <Inline
      data={{ testid: testId }}
    />
  )

  const kit = screen.getByTestId(testId)
  expect(kit).toBeInTheDocument()
})

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
playbook_ui-8.2.1.pre.alpha1 app/pb_kits/playbook/pb_inline/inline.test.jsx
playbook_ui-8.1.0.pre.alpha1 app/pb_kits/playbook/pb_inline/inline.test.jsx