mirror of
https://github.com/ansible/awx.git
synced 2026-01-16 12:20:45 -03:30
14 lines
276 B
JavaScript
14 lines
276 B
JavaScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
|
|
import Detail from './Detail';
|
|
|
|
describe('Detail', () => {
|
|
test('renders the expected content', () => {
|
|
const wrapper = mount(
|
|
<Detail label="foo" />
|
|
);
|
|
expect(wrapper).toHaveLength(1);
|
|
});
|
|
});
|