From 4cb8493a3e376c71d0e48bd222557273f2fe032e Mon Sep 17 00:00:00 2001 From: Daniel Scott-Raynsford Date: Thu, 24 Jul 2025 17:18:08 +1200 Subject: [PATCH] CHANGE: Correct file naming pattern in guidelines - Updated the file naming pattern from '**/*.tests.ps1' to '**/*.Tests.ps1' for consistency with PowerShell Pester v5 conventions. --- instructions/powershell-pester-5.instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instructions/powershell-pester-5.instructions.md b/instructions/powershell-pester-5.instructions.md index fb95cfc..78b81ad 100644 --- a/instructions/powershell-pester-5.instructions.md +++ b/instructions/powershell-pester-5.instructions.md @@ -1,5 +1,5 @@ --- -applyTo: '**/*.tests.ps1' +applyTo: '**/*.Tests.ps1' description: 'PowerShell Pester testing best practices based on Pester v5 conventions' ---