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

components.snippets.Placeholder.Placeholder.test.js Maven / Gradle / Ivy

The newest version!
import React from 'react'

import Placeholder from './Placeholder'

const setup = props => mount()

describe('Тесты Placeholder', () => {
    it('componentDidUpdate', () => {
        const wrapper = setup({ loading: true })

        expect(wrapper.instance().stopRender).toBe(false)
        wrapper.setProps({ loading: false })
        expect(wrapper.instance().stopRender).toBe(true)
    })
})




© 2015 - 2024 Weber Informatics LLC | Privacy Policy