mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
Fix linter complains
This commit is contained in:
parent
0fae057871
commit
601cdc1a42
|
@ -10,7 +10,7 @@ export interface TestDefinitionRecord {
|
|||
description?: string | null;
|
||||
updatedAt?: string;
|
||||
createdAt?: string;
|
||||
annotationTag: string | null;
|
||||
annotationTag?: string | null;
|
||||
}
|
||||
|
||||
interface CreateTestDefinitionParams {
|
||||
|
|
|
@ -100,7 +100,7 @@ describe('TestDefinitionEditView', () => {
|
|||
setActivePinia(pinia);
|
||||
mockedStore(useAnnotationTagsStore).fetchAll.mockResolvedValue([]);
|
||||
|
||||
const { getByTestId } = renderComponent({ pinia });
|
||||
renderComponent({ pinia });
|
||||
await nextTick();
|
||||
|
||||
expect(loadTestDataMock).toHaveBeenCalledWith('1');
|
||||
|
|
Loading…
Reference in a new issue