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;
|
description?: string | null;
|
||||||
updatedAt?: string;
|
updatedAt?: string;
|
||||||
createdAt?: string;
|
createdAt?: string;
|
||||||
annotationTag: string | null;
|
annotationTag?: string | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface CreateTestDefinitionParams {
|
interface CreateTestDefinitionParams {
|
||||||
|
|
|
@ -100,7 +100,7 @@ describe('TestDefinitionEditView', () => {
|
||||||
setActivePinia(pinia);
|
setActivePinia(pinia);
|
||||||
mockedStore(useAnnotationTagsStore).fetchAll.mockResolvedValue([]);
|
mockedStore(useAnnotationTagsStore).fetchAll.mockResolvedValue([]);
|
||||||
|
|
||||||
const { getByTestId } = renderComponent({ pinia });
|
renderComponent({ pinia });
|
||||||
await nextTick();
|
await nextTick();
|
||||||
|
|
||||||
expect(loadTestDataMock).toHaveBeenCalledWith('1');
|
expect(loadTestDataMock).toHaveBeenCalledWith('1');
|
||||||
|
|
Loading…
Reference in a new issue