Skip to content

Commit

Permalink
relocate utils.ts and walkthrough.ts test
Browse files Browse the repository at this point in the history
  • Loading branch information
vicheey committed Nov 11, 2024
1 parent 3f1e72e commit 13970f3
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
import * as sinon from 'sinon'
import * as vscode from 'vscode'
import assert from 'assert'
import { getTestWindow } from '../../../shared/vscode/window'
import { getTestWindow } from '../../shared/vscode/window'

import fs from '../../../../shared/fs/fs'
import { ResourceNode } from '../../../../awsService/appBuilder/explorer/nodes/resourceNode'
import fs from '../../../shared/fs/fs'
import { ResourceNode } from '../../../awsService/appBuilder/explorer/nodes/resourceNode'
import path from 'path'
import { SERVERLESS_FUNCTION_TYPE } from '../../../../shared/cloudformation/cloudformation'
import { runOpenHandler, runOpenTemplate } from '../../../../awsService/appBuilder/utils'
import { TreeNode } from '../../../../shared/treeview/resourceTreeDataProvider'
import { assertTextEditorContains } from '../../../testUtil'
import { SERVERLESS_FUNCTION_TYPE } from '../../../shared/cloudformation/cloudformation'
import { runOpenHandler, runOpenTemplate } from '../../../awsService/appBuilder/utils'
import { TreeNode } from '../../../shared/treeview/resourceTreeDataProvider'
import { assertTextEditorContains } from '../../testUtil'

interface TestScenario {
runtime: string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@ import assert from 'assert'
import {
openApplicationComposerAfterReload,
templateToOpenAppComposer,
} from '../../../../awsService/appBuilder/activation'
import globals from '../../../../shared/extensionGlobals'
} from '../../../awsService/appBuilder/activation'
import globals from '../../../shared/extensionGlobals'
import {
RuntimeLocationWizard,
genWalkthroughProject,
openProjectInWorkspace,
} from '../../../../awsService/appBuilder/walkthrough'
import { createWizardTester } from '../../../shared/wizards/wizardTestUtils'
import { fs } from '../../../../shared'
import { getTestWindow } from '../../../shared/vscode/window'

import { AwsClis, installCli } from '../../../../shared/utilities/cliUtils'
import { ChildProcess } from '../../../../shared/utilities/processUtils'
import { assertTelemetryCurried } from '../../../testUtil'
import { HttpResourceFetcher } from '../../../../shared/resourcefetcher/httpResourceFetcher'
import { SamCliInfoInvocation } from '../../../../shared/sam/cli/samCliInfo'
} from '../../../awsService/appBuilder/walkthrough'
import { createWizardTester } from '../../shared/wizards/wizardTestUtils'
import { fs } from '../../../shared'
import { getTestWindow } from '../../shared/vscode/window'

import { AwsClis, installCli } from '../../../shared/utilities/cliUtils'
import { ChildProcess } from '../../../shared/utilities/processUtils'
import { assertTelemetryCurried } from '../../testUtil'
import { HttpResourceFetcher } from '../../../shared/resourcefetcher/httpResourceFetcher'
import { SamCliInfoInvocation } from '../../../shared/sam/cli/samCliInfo'

interface TestScenario {
toolID: AwsClis
Expand Down

0 comments on commit 13970f3

Please sign in to comment.