Skip to content

Commit 597e995

Browse files
authored
Update command reference to Pester 5.6.0 (#314)
* Bump command ref to 5.6.0 * Unescape curly braces in codeblocks
1 parent 3d2a713 commit 597e995

27 files changed

+57
-56
lines changed

docs/commands/Add-ShouldOperator.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,4 +166,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
166166
167167
## VERSION
168168
169-
*This page was generated using comment-based help in [Pester 5.5.0](https://github.com/pester/pester).*
169+
*This page was generated using comment-based help in [Pester 5.6.0](https://github.com/pester/pester).*

docs/commands/AfterAll.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,4 +107,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
107107
108108
## VERSION
109109
110-
*This page was generated using comment-based help in [Pester 5.5.0](https://github.com/pester/pester).*
110+
*This page was generated using comment-based help in [Pester 5.6.0](https://github.com/pester/pester).*

docs/commands/AfterEach.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
104104
105105
## VERSION
106106
107-
*This page was generated using comment-based help in [Pester 5.5.0](https://github.com/pester/pester).*
107+
*This page was generated using comment-based help in [Pester 5.6.0](https://github.com/pester/pester).*

docs/commands/Assert-MockCalled.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,4 +184,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
184184
185185
## VERSION
186186
187-
*This page was generated using comment-based help in [Pester 5.5.0](https://github.com/pester/pester).*
187+
*This page was generated using comment-based help in [Pester 5.6.0](https://github.com/pester/pester).*

docs/commands/Assert-VerifiableMock.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
6161

6262
## VERSION
6363

64-
*This page was generated using comment-based help in [Pester 5.5.0](https://github.com/pester/pester).*
64+
*This page was generated using comment-based help in [Pester 5.6.0](https://github.com/pester/pester).*

docs/commands/BeforeAll.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,4 +116,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
116116

117117
## VERSION
118118

119-
*This page was generated using comment-based help in [Pester 5.5.0](https://github.com/pester/pester).*
119+
*This page was generated using comment-based help in [Pester 5.6.0](https://github.com/pester/pester).*

docs/commands/BeforeDiscovery.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,4 +94,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
9494
9595
## VERSION
9696
97-
*This page was generated using comment-based help in [Pester 5.5.0](https://github.com/pester/pester).*
97+
*This page was generated using comment-based help in [Pester 5.6.0](https://github.com/pester/pester).*

docs/commands/BeforeEach.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
101101
102102
## VERSION
103103
104-
*This page was generated using comment-based help in [Pester 5.5.0](https://github.com/pester/pester).*
104+
*This page was generated using comment-based help in [Pester 5.6.0](https://github.com/pester/pester).*

docs/commands/Context.mdx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,9 @@ Accept wildcard characters: False
125125
126126
### -Skip
127127
128-
[Switch] $Focus,
128+
Use this parameter to explicitly mark the block to be skipped.
129+
This is preferable to temporarily
130+
commenting out a block, because it remains listed in the output.
129131
130132
```yaml
131133
Type: SwitchParameter
@@ -181,4 +183,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
181183
182184
## VERSION
183185
184-
*This page was generated using comment-based help in [Pester 5.5.0](https://github.com/pester/pester).*
186+
*This page was generated using comment-based help in [Pester 5.6.0](https://github.com/pester/pester).*

docs/commands/ConvertTo-JUnitReport.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Converts a Pester result-object to an JUnit-compatible XML report
2323
## SYNTAX
2424

2525
```powershell
26-
ConvertTo-JUnitReport [-Result] <Object> [-AsString] [<CommonParameters>]
26+
ConvertTo-JUnitReport [-Result] <Run> [-AsString] [<CommonParameters>]
2727
```
2828

2929
## DESCRIPTION
@@ -73,7 +73,7 @@ This can be retrieved using Invoke-Pester
7373
-Passthru or by using the Run.PassThru configuration-option.
7474

7575
```yaml
76-
Type: Object
76+
Type: Run
7777
Parameter Sets: (All)
7878
Aliases:
7979

@@ -118,4 +118,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
118118
119119
## VERSION
120120
121-
*This page was generated using comment-based help in [Pester 5.5.0](https://github.com/pester/pester).*
121+
*This page was generated using comment-based help in [Pester 5.6.0](https://github.com/pester/pester).*

0 commit comments

Comments
 (0)