Skip to content

Commit

Permalink
Deactivate tests for not yet support Pester v6 functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
johlju committed Aug 1, 2024
1 parent 5c507ce commit 6ed457c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tests/Integration/Syntax/v5/ShouldMatch.v5.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Describe 'Should -Match' {
# TODO: When Pester 6 supports `Should-MatchString` and `Should-NotMatchString` this test should be activated.
Describe 'Should -Match' -Skip:$true {
Context 'When the tests are affirming' {
It 'Should convert `Should -Match ''Test''` correctly' {
'Test' | Should -Match 'Test'
Expand Down
3 changes: 2 additions & 1 deletion tests/Integration/Syntax/v5/ShouldMatchExactly.v5.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Describe 'Should -MatchExactly' {
# TODO: When Pester 6 supports `Should-MatchString` and `Should-NotMatchString` this test should be activated.
Describe 'Should -MatchExactly' -Skip:$true {
Context 'When the tests are affirming' {
It 'Should convert `Should -MatchExactly ''Test''` correctly' {
'Test' | Should -MatchExactly 'Test'
Expand Down

0 comments on commit 6ed457c

Please sign in to comment.