From cc6190d4ea26dfbec7a23e5744454d199421baf1 Mon Sep 17 00:00:00 2001 From: Helly Zhang <49181894+hellyzh@users.noreply.github.com> Date: Thu, 4 Jul 2024 11:23:03 +0800 Subject: [PATCH] test: clean up VS testing resources (#11956) --- packages/tests/src/scripts/clean.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/tests/src/scripts/clean.ts b/packages/tests/src/scripts/clean.ts index a58a8e3675..7c5ea28aed 100644 --- a/packages/tests/src/scripts/clean.ts +++ b/packages/tests/src/scripts/clean.ts @@ -14,10 +14,10 @@ import { import { getAppNamePrefix } from "../utils/nameUtil"; import { delay } from "../utils/retryHandler"; -const appStudioAppNamePrefixList: string[] = [Project.namePrefix]; -const appNamePrefixList: string[] = [Project.namePrefix]; -const aadNamePrefixList: string[] = [Project.namePrefix]; -const rgNamePrefixList: string[] = [Project.namePrefix]; +const appStudioAppNamePrefixList: string[] = [Project.namePrefix, "vs"]; +const appNamePrefixList: string[] = [Project.namePrefix, "vs"]; +const aadNamePrefixList: string[] = [Project.namePrefix, "vs"]; +const rgNamePrefixList: string[] = [Project.namePrefix, "vs"]; const excludePrefix: string = getAppNamePrefix(); async function main() {