All Downloads are FREE. Search and download functionalities are using the official Maven repository.

components.controls.InputHidden.InputHidden.test.js Maven / Gradle / Ivy

The newest version!
import React from 'react'

import InputHidden from './InputHidden'

const setup = () => {
    const props = {
        value: 'Тестовое значение',
    }

    return mount()
}

describe('Компонент InputHidden', () => {
    it('должен отрисоваться', () => {
        const wrapper = setup()

        expect(wrapper.find('input[type="hidden"]').exists()).toEqual(true)
    })
})




© 2015 - 2024 Weber Informatics LLC | Privacy Policy