mirror of
https://github.com/hustcc/echarts-for-react.git
synced 2026-02-01 16:47:00 +00:00
8 lines
157 B
TypeScript
8 lines
157 B
TypeScript
import { isEqual } from '../../src/helper/is-equal';
|
|
|
|
describe('is-equal', () => {
|
|
it('isEqual', () => {
|
|
expect(isEqual({}, {})).toBe(true);
|
|
});
|
|
});
|