Skip to content

Commit 928d1b7

Browse files
authored
setting provider to avoid avoid warning (#613)
Update RunTests.ps1
1 parent a2e84c6 commit 928d1b7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

samples/copilotstudiokit/RunTests.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -280,11 +280,11 @@ if ($runTests)
280280
$mdaUrl = "$environmentUrl/main.aspx?appid=$appId&pagetype=entitylist&etn=$entityName&viewid=$viewId&viewType=1039"
281281
if ($record) {
282282
# Run the tests for each user in the configuration file.
283-
dotnet PowerAppsTestEngine.dll -c "$staticContext" -w "$debugTestValue" -u "$userAuth" -a "$authType" -p "mda" -a "none" -r "True" -i "$currentDirectory\$matchingScript" -t $tenantId -e $environmentId -d "$mdaUrl" -l "Debug"
283+
dotnet PowerAppsTestEngine.dll -c "$staticContext" -w "$debugTestValue" -u "$userAuth" -a "$authType" --provider "mda" -a "none" -r "True" -i "$currentDirectory\$matchingScript" -t $tenantId -e $environmentId -d "$mdaUrl" -l "Debug"
284284
} else {
285285
Write-Host "Skipped recording"
286286
# Run the tests for each user in the configuration file.
287-
dotnet PowerAppsTestEngine.dll -c "$staticContext" -w "$debugTestValue" -u "$userAuth" -a "$authType" -p "mda" -a "none" -i "$currentDirectory\$matchingScript" -t $tenantId -e $environmentId -d "$mdaUrl" -l "Debug"
287+
dotnet PowerAppsTestEngine.dll -c "$staticContext" -w "$debugTestValue" -u "$userAuth" -a "$authType" --provider "mda" -a "none" -i "$currentDirectory\$matchingScript" -t $tenantId -e $environmentId -d "$mdaUrl" -l "Debug"
288288
}
289289

290290
Update-TestData -folderPath $folderPath -timeThreshold $testStart -entityName $entityName -entityType "list"
@@ -665,4 +665,4 @@ Write-Host "HTML summary report generated successfully at $folderPath."
665665
Write-Host "Opening report in browser..."
666666
Write-Host $reportPath
667667

668-
Invoke-Item $reportPath
668+
Invoke-Item $reportPath

0 commit comments

Comments
 (0)