Skip to content

Commit

Permalink
Updated powershell script
Browse files Browse the repository at this point in the history
  • Loading branch information
Fargekritt committed Jan 14, 2025
1 parent 391ae4d commit 7b8dac9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/k6/scripts/generate_all_tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if (-not (Test-Path $DirectoryPath -PathType Container)) {
}

# Get all *.js files in the directory except for "all-tests.js"
$jsFiles = Get-ChildItem -Path $DirectoryPath -Filter "*.js" | Where-Object { $_.Name -ne "all-tests.js" }
$jsFiles = Get-ChildItem -Path $DirectoryPath -Filter "*.js" | Where-Object { $_.Name -ne "all-tests.js" } | Where-Object { $_.Directory.FullName.Contains("/performance/") }

# Create the import strings
$importStatements = $jsFiles | ForEach-Object {
Expand Down

0 comments on commit 7b8dac9

Please sign in to comment.