The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/public/app/plugins/datasource/azuremonitor/utils/useLastError.test.ts

27 lines
815 B

import { renderHook, act } from '@testing-library/react';
import useLastError from './useLastError';
describe('AzureMonitor: useLastError', () => {
it('returns the set error', () => {
const { result } = renderHook(() => useLastError());
act(() => {
result.current[1]('component-a', new Error('an error'));
});
expect(result.current[0]).toBe('an error');
});
it('returns the most recent error', () => {
const { result } = renderHook(() => useLastError());
act(() => {
result.current[1]('component-a', new Error('component a error'));
result.current[1]('component-b', new Error('component b error'));
result.current[1]('component-a', new Error('second component a error'));
});
expect(result.current[0]).toBe('second component a error');
});
});