Fixing smattering of issues regarding updating projects for cross-plat (#22575)

* Fixing smattering of issues regarding updating projects for cross-plat

* Adding both options for modal

* Removing quickpick
This commit is contained in:
Benjin Dubishar
2023-04-03 10:10:31 -07:00
committed by GitHub
parent 267a830775
commit 15ecdc8653
4 changed files with 45 additions and 10 deletions

View File

@@ -1108,7 +1108,7 @@ async function testUpdateInRoundTrip(test: Mocha.Runnable | undefined, fileBefor
project.isCrossPlatformCompatible.should.be.false('Project should not be cross-plat compatible before conversion');
await project.updateProjectForRoundTrip();
await project.updateProjectForCrossPlatform();
(project.isCrossPlatformCompatible).should.be.true('Project should be cross-plat compatible after conversion');
(await exists(projFilePath + '_backup')).should.be.true('Backup file should have been generated before the project was updated');