Skip to content

Commit

Permalink
Fix import order
Browse files Browse the repository at this point in the history
  • Loading branch information
elsmr committed Jan 6, 2025
1 parent f1baa36 commit 829940d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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(() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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(() => {
Expand Down
2 changes: 1 addition & 1 deletion packages/nodes-base/nodes/Google/Gmail/v1/GmailV1.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand All @@ -25,7 +26,6 @@ import {
googleApiRequestAllItems,
parseRawEmail,
} from '../GenericFunctions';
import { getLabels } from './loadOptions';

const versionDescription: INodeTypeDescription = {
displayName: 'Gmail',
Expand Down

0 comments on commit 829940d

Please sign in to comment.