src/components/CalcButton/index.test.js
import React from 'react'
import renderer from 'react-test-renderer'
import CalcButton from '.'
jest.mock('react-dom')
describe('CalcButton', () => {
it('renders <a-entity>', () => {
const tree = renderer.create(<CalcButton />).toJSON()
expect(tree.type).toBe('a-entity')
})
it('renders <a-entity> with id', () => {
const tree = renderer.create(<CalcButton id="calc-button" />).toJSON()
expect(tree.props.id).toBe('calc-button')
})
it('is interactable with super-hands', () => {
const tree = renderer.create(<CalcButton />).toJSON()
expect(tree.props.className).toBe('interactive')
})
it('renders the entity consistently', () => {
const action = jest.fn()
const tree = renderer.create(<CalcButton id="calc-button" actionToTrigger={action} value="test" />)
expect(tree).toMatchSnapshot()
})
})