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