UNPKG

@salesforce/salesforcedx-vscode-test-tools

Version:
29 lines 1.24 kB
"use strict"; /* * Copyright (c) 2024, salesforce.com, inc. * All rights reserved. * Licensed under the BSD 3-Clause license. * For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause */ Object.defineProperty(exports, "__esModule", { value: true }); const mocha_steps_1 = require("mocha-steps"); const testSetup_1 = require("../../src/testSetup"); const core_1 = require("../../src/core"); const ui_interaction_1 = require("../../src/ui-interaction"); describe('Use existing project', () => { const testReqConfig = { projectConfig: { projectShape: core_1.ProjectShapeOption.NAMED, githubRepoUrl: 'https://github.com/trailheadapps/dreamhouse-lwc.git' }, isOrgRequired: false, testSuiteSuffixName: 'UseExistingProject' }; let testSetup; (0, mocha_steps_1.step)('verify existing project is open', async () => { testSetup = await testSetup_1.TestSetup.setUp(testReqConfig); (0, core_1.log)(`${testSetup.testSuiteSuffixName} - Verify existing project open`); await (0, ui_interaction_1.verifyProjectLoaded)('dreamhouse-lwc'); }); }); //# sourceMappingURL=useExistingProject.test.js.map