grafana/public/app/features/manage-dashboards/components/SnapshotListTable.test.tsx
Ashley Harrison f8d89eff56
Chore: fix type errors in tests (#63270)
* fix any's in tests

* fix more any's in tests

* more test type fixes

* fixing any's in tests part 3

* more test type fixes

* fixing test any's p5

* some tidy up

* fix template_srv
2023-02-14 16:46:42 +01:00

61 lines
1.5 KiB
TypeScript

import { locationService } from '@grafana/runtime';
import { getSnapshots } from './SnapshotListTable';
jest.mock('@grafana/runtime', () => ({
...jest.requireActual('@grafana/runtime'),
getBackendSrv: () => ({
get: jest.fn().mockResolvedValue([
{
name: 'Snap 1',
key: 'JRXqfKihKZek70FM6Xaq502NxH7OyyEs',
external: true,
externalUrl: 'https://www.externalSnapshotUrl.com',
},
{
id: 3,
name: 'Snap 2',
key: 'RziRfhlBDTjwyYGoHAjnWyrMNQ1zUg3j',
external: false,
externalUrl: '',
},
]),
}),
}));
describe('getSnapshots', () => {
global.window = Object.create(window);
Object.defineProperty(window, 'location', {
value: {
href: 'http://localhost:3000/grafana/dashboard/snapshots',
},
writable: true,
});
locationService.push('/dashboard/snapshots');
test('returns correct snapshot urls', async () => {
const results = await getSnapshots();
expect(results).toMatchInlineSnapshot(`
[
{
"external": true,
"externalUrl": "https://www.externalSnapshotUrl.com",
"key": "JRXqfKihKZek70FM6Xaq502NxH7OyyEs",
"name": "Snap 1",
"url": "/dashboard/snapshot/JRXqfKihKZek70FM6Xaq502NxH7OyyEs",
},
{
"external": false,
"externalUrl": "",
"id": 3,
"key": "RziRfhlBDTjwyYGoHAjnWyrMNQ1zUg3j",
"name": "Snap 2",
"url": "/dashboard/snapshot/RziRfhlBDTjwyYGoHAjnWyrMNQ1zUg3j",
},
]
`);
});
});