mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Add and configure eslint-plugin-import * Fix the lint:ts npm command * Autofix + prettier all the files * Manually fix remaining files * Move jquery code in jest-setup to external file to safely reorder imports * Resolve issue caused by circular dependencies within Prometheus * Update .betterer.results * Fix missing // @ts-ignore * ignore iconBundle.ts * Fix missing // @ts-ignore
25 lines
790 B
TypeScript
25 lines
790 B
TypeScript
import { renderHook } from '@testing-library/react-hooks';
|
|
|
|
import { useUniqueId } from './useUniqueId';
|
|
|
|
describe('useUniqueId', () => {
|
|
it('should work correctly', () => {
|
|
const { result: resultA, rerender: rerenderA } = renderHook(() => useUniqueId());
|
|
const { result: resultB, rerender: rerenderB } = renderHook(() => useUniqueId());
|
|
|
|
// the values of the separate hooks should be different
|
|
expect(resultA.current).not.toBe(resultB.current);
|
|
|
|
// we copy the current values after the first render
|
|
const firstValueA = resultA.current;
|
|
const firstValueB = resultB.current;
|
|
|
|
rerenderA();
|
|
rerenderB();
|
|
|
|
// we check that the value did not change
|
|
expect(resultA.current).toBe(firstValueA);
|
|
expect(resultB.current).toBe(firstValueB);
|
|
});
|
|
});
|