mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 12:57:29 -08:00
Fix import order
This commit is contained in:
parent
f1baa36b8d
commit
829940d962
|
@ -5,9 +5,9 @@ import nock from 'nock';
|
|||
|
||||
import { testWorkflows } from '@test/nodes/Helpers';
|
||||
|
||||
import { getLabels } from '../../v1/loadOptions';
|
||||
import labels from '../fixtures/labels.json';
|
||||
import messages from '../fixtures/messages.json';
|
||||
import { getLabels } from '../../v1/loadOptions';
|
||||
|
||||
describe('Test Gmail Node v1', () => {
|
||||
beforeAll(() => {
|
||||
|
|
|
@ -5,9 +5,9 @@ import nock from 'nock';
|
|||
|
||||
import { testWorkflows } from '@test/nodes/Helpers';
|
||||
|
||||
import { getGmailAliases, getLabels, getThreadMessages } from '../../v2/loadOptions';
|
||||
import labels from '../fixtures/labels.json';
|
||||
import messages from '../fixtures/messages.json';
|
||||
import { getGmailAliases, getLabels, getThreadMessages } from '../../v2/loadOptions';
|
||||
|
||||
describe('Test Gmail Node v2', () => {
|
||||
beforeAll(() => {
|
||||
|
|
|
@ -15,6 +15,7 @@ import { oldVersionNotice } from '@utils/descriptions';
|
|||
|
||||
import { draftFields, draftOperations } from './DraftDescription';
|
||||
import { labelFields, labelOperations } from './LabelDescription';
|
||||
import { getLabels } from './loadOptions';
|
||||
import { messageFields, messageOperations } from './MessageDescription';
|
||||
import { messageLabelFields, messageLabelOperations } from './MessageLabelDescription';
|
||||
import type { IEmail } from '../../../../utils/sendAndWait/interfaces';
|
||||
|
@ -25,7 +26,6 @@ import {
|
|||
googleApiRequestAllItems,
|
||||
parseRawEmail,
|
||||
} from '../GenericFunctions';
|
||||
import { getLabels } from './loadOptions';
|
||||
|
||||
const versionDescription: INodeTypeDescription = {
|
||||
displayName: 'Gmail',
|
||||
|
|
Loading…
Reference in a new issue