File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ throw "Expected built $script: moduleName module at: $script: distModuleDir. Run
99
1010Remove-Module $script : moduleName - ErrorAction SilentlyContinue
1111Import-Module $script : distModuleDir - Force
12+
1213$script : getTestQualityPesterConfig = {
1314return [pscustomobject ]@ {
1415Run = [pscustomobject ]@ {
@@ -35,9 +36,11 @@ CoveragePercentTarget = 75
3536}
3637}
3738}
39+
3840$script : getTestQualityProjectInfo = {
3941param (
40- [Parameter (Mandatory )][object ]$PesterSettings
42+ [Parameter (Mandatory )]
43+ [object ]$PesterSettings
4144)
4245
4346return [pscustomobject ]@ {
@@ -60,7 +63,8 @@ CoveragePercentTarget = 99
6063})
6164
6265InModuleScope $script : moduleName - Parameters @ {
63- PesterConfig = $pesterConfig ; ProjectInfo = $projectInfo
66+ PesterConfig = $pesterConfig
67+ ProjectInfo = $projectInfo
6468} {
6569param ($PesterConfig , $ProjectInfo )
6670
@@ -107,7 +111,8 @@ Enabled = $true
107111})
108112
109113InModuleScope $script : moduleName - Parameters @ {
110- PesterConfig = $pesterConfig ; ProjectInfo = $projectInfo
114+ PesterConfig = $pesterConfig
115+ ProjectInfo = $projectInfo
111116} {
112117param ($PesterConfig , $ProjectInfo )
113118
You can’t perform that action at this time.
0 commit comments