mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Fix eslint error
Signed-off-by: Tyler Smalley <tyler.smalley@elastic.co>
This commit is contained in:
parent
d37ad90e53
commit
c76082e006
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ import { SavedObjectsClientContract } from 'src/core/server';
|
|||
import { DataViewSavedObjectConflictError } from '../../common/data_views';
|
||||
|
||||
describe('SavedObjectsClientPublicToCommon', () => {
|
||||
const soClient = ({ resolve: jest.fn() } as unknown) as SavedObjectsClientContract;
|
||||
const soClient = { resolve: jest.fn() } as unknown as SavedObjectsClientContract;
|
||||
|
||||
test('get saved object - exactMatch', async () => {
|
||||
const mockedSavedObject = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue