Skip to content

Commit b44fd20

Browse files
author
sgkens
committed
✅ test(update): Add tests.
1 parent bb4671e commit b44fd20

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

test/Test-Unit-Pester.ps1

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
import-module -name .\commitfusion.psd1
22
import-module -name .\tools\GLIPParagraph\Write-GLIPParagraph.psm1
33

4-
54
BeforeAll {
65
$Notes = @()
76
for ($x = -1; $x -lt $randomNotes; $x++) {
87
$Notes += Write-GLIPParagraph -Length (get-random -minimum 10 -maximum 20)
98
}
10-
$FeatureAddtions = @()
9+
$FeatureAdditions = @()
1110
for ($x = -1; $x -lt $randomNotes; $x++) {
12-
$FeatureAddtions += Write-GLIPParagraph -Length (get-random -minimum 10 -maximum 20)
11+
$FeatureAdditions += Write-GLIPParagraph -Length (get-random -minimum 10 -maximum 20)
1312
}
1413
$BugFixes = @()
1514
for ($x = -1; $x -lt $randomNotes; $x++) {
@@ -28,7 +27,7 @@ BeforeAll {
2827
Scope = "test"
2928
Description = "test"
3029
Notes = "test"
31-
FeatureAddtions = $FeatureAddtions
30+
FeatureAdditions = $FeatureAdditions
3231
BugFixes = $BugFixes
3332
FeatureNotes = $FeatureNotes
3433
BreakingChanges = $BreakingChanges

0 commit comments

Comments
 (0)