aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/card/tests/card.component.test.js
blob: cea05033f1d972f65b59a6c66f1217b124e0789f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import React from 'react'
import assert from 'assert'
import { shallow } from 'enzyme'
import Card from '../card.component'

describe('Card Component', () => {
  it('should render a card with a title and child element', () => {
    const wrapper = shallow(
      <Card
        title="Test"
        className="card-test-class"
      >
        <div className="child-test-class">Child</div>
      </Card>
    )

    assert.ok(wrapper.hasClass('card-test-class'))
    const title = wrapper.find('.card__title')
    assert.ok(title)
    assert.equal(title.text(), 'Test')
    const child = wrapper.find('.child-test-class')
    assert.ok(child)
    assert.equal(child.text(), 'Child')
  })
})