refactor: Enable import/order rule for n8n-core (#11016)

This commit is contained in:
Tomi Turtiainen
2024-09-30 16:38:56 +03:00
committed by GitHub
parent e54a396088
commit d2238b9eac
48 changed files with 127 additions and 97 deletions

View File

@@ -1,3 +1,6 @@
import type { IRunExecutionData } from 'n8n-workflow';
import { InvalidExecutionMetadataError } from '@/errors/invalid-execution-metadata.error';
import {
setWorkflowExecutionMetadata,
setAllWorkflowExecutionMetadata,
@@ -5,8 +8,6 @@ import {
getWorkflowExecutionMetadata,
getAllWorkflowExecutionMetadata,
} from '@/ExecutionMetadata';
import { InvalidExecutionMetadataError } from '@/errors/invalid-execution-metadata.error';
import type { IRunExecutionData } from 'n8n-workflow';
describe('Execution Metadata functions', () => {
test('setWorkflowExecutionMetadata will set a value', () => {