Fix linter complains

This commit is contained in:
Oleg Ivaniv 2024-12-10 09:08:48 +01:00
parent 0fae057871
commit 601cdc1a42
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@ export interface TestDefinitionRecord {
description?: string | null;
updatedAt?: string;
createdAt?: string;
annotationTag: string | null;
annotationTag?: string | null;
}
interface CreateTestDefinitionParams {

View file

@ -100,7 +100,7 @@ describe('TestDefinitionEditView', () => {
setActivePinia(pinia);
mockedStore(useAnnotationTagsStore).fetchAll.mockResolvedValue([]);
const { getByTestId } = renderComponent({ pinia });
renderComponent({ pinia });
await nextTick();
expect(loadTestDataMock).toHaveBeenCalledWith('1');