mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 16:51:11 +03:00
15 lines
480 B
JavaScript
15 lines
480 B
JavaScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
|
|
import { I18nProvider } from '@lingui/react';
|
|
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);
|
|
});
|
|
});
|