metadata-based-explorer1
Version:
Box UI Elements
12 lines (8 loc) • 320 B
JavaScript
import React from 'react';
import IconCaretDown from '../IconCaretDown';
describe('icons/general/IconCaretDown', () => {
test('should correctly render default caret down icon', () => {
const wrapper = shallow(<IconCaretDown />);
expect(wrapper.hasClass('icon-caret-down')).toBe(true);
});
});