Skip to content

Commit

Permalink
Add missing help for -Skip in Context and Describe (#2426)
Browse files Browse the repository at this point in the history
* Add missing help for -Skip in Context and Describe

* Update -Skip parameter help in It
  • Loading branch information
fflaten committed Apr 10, 2024
1 parent 3686263 commit 460d6db
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions src/functions/Context.ps1
Expand Up @@ -22,6 +22,10 @@
Script that is executed. This may include setup specific to the context
and one or more It blocks that validate the expected outcomes.
.PARAMETER Skip
Use this parameter to explicitly mark the block to be skipped. This is preferable to temporarily
commenting out a block, because it remains listed in the output.
.PARAMETER ForEach
Allows data driven tests to be written.
Takes an array of data and generates one block for each item in the array, and makes the item
Expand Down
4 changes: 4 additions & 0 deletions src/functions/Describe.ps1
Expand Up @@ -24,6 +24,10 @@
it is possible to specify a -Tag parameter which will only execute Describe blocks
containing the same Tag.
.PARAMETER Skip
Use this parameter to explicitly mark the block to be skipped. This is preferable to temporarily
commenting out a block, because it remains listed in the output.
.PARAMETER ForEach
Allows data driven tests to be written.
Takes an array of data and generates one block for each item in the array, and makes the item
Expand Down
3 changes: 1 addition & 2 deletions src/functions/It.ps1
Expand Up @@ -35,8 +35,7 @@
.PARAMETER Skip
Use this parameter to explicitly mark the test to be skipped. This is preferable to temporarily
commenting out a test, because the test remains listed in the output. Use the Strict parameter
of Invoke-Pester to force all skipped tests to fail.
commenting out a test, because the test remains listed in the output.
.PARAMETER ForEach
(Formerly called TestCases.) Optional array of hashtable (or any IDictionary) objects.
Expand Down

0 comments on commit 460d6db

Please sign in to comment.