mirror of https://github.com/grafana/grafana.git
Chore: Remove console.log in fetch.test.ts (#45134)
This commit is contained in:
parent
e4534deab3
commit
c25031fa49
|
|
@ -9,6 +9,11 @@ import {
|
|||
parseUrlFromOptions,
|
||||
} from './fetch';
|
||||
|
||||
jest.mock('@grafana/data', () => ({
|
||||
...(jest.requireActual('@grafana/data') as unknown as object),
|
||||
deprecationWarning: () => {},
|
||||
}));
|
||||
|
||||
describe('parseUrlFromOptions', () => {
|
||||
it.each`
|
||||
params | url | expected
|
||||
|
|
|
|||
Loading…
Reference in New Issue