mirror of
https://github.com/kevinsqi/react-circular-progressbar.git
synced 2026-01-18 15:55:06 +00:00
11 lines
301 B
JavaScript
11 lines
301 B
JavaScript
import React from 'react';
|
|
import { assert } from 'chai';
|
|
import { shallow } from 'enzyme';
|
|
import CircularProgressbar from '../../src';
|
|
|
|
describe('CircularProgressbar', () => {
|
|
it('should not throw exceptions in base case', () => {
|
|
assert.doesNotThrow(() => <CircularProgressbar />);
|
|
});
|
|
});
|