mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 08:21:15 +03:00
14 lines
427 B
JavaScript
14 lines
427 B
JavaScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
|
|
import Background from '../../src/components/Background';
|
|
|
|
describe('Background', () => {
|
|
test('renders the expected content', () => {
|
|
const wrapper = mount(<Background><div id="test" /></Background>);
|
|
expect(wrapper).toHaveLength(1);
|
|
expect(wrapper.find('BackgroundImage')).toHaveLength(1);
|
|
expect(wrapper.find('#test')).toHaveLength(1);
|
|
});
|
|
});
|