Skip to content

Commit 3da7466

Browse files
committed
fix build test
1 parent 1b2cfc6 commit 3da7466

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

tests/Build/BuildValidation.Tests.ps1

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,22 @@ Describe 'Build Script Validation' {
3131

3232
It 'contains expected exported functions' {
3333
$expectedFunctions = @(
34-
'ConvertTo-Splatting',
3534
'Export-PSNote',
36-
'Get-CommandSplatting',
3735
'Get-PSNote',
3836
'Get-PSNoteAlias',
37+
'Get-PSNoteMenu',
3938
'Import-PSNote',
4039
'Initialize-PSNoteStore',
40+
'Move-PSNote',
4141
'New-PSNote',
4242
'Remove-PSNote',
4343
'Set-PSNote',
44-
'Start-PSNote',
45-
'Update-PSNoteStore'
44+
'Update-PSNoteStore',
45+
'Get-RemoteCatalog',
46+
'Import-RemoteCatalog',
47+
'Remove-RemoteCatalog',
48+
'ConvertTo-Splatting',
49+
'Get-CommandSplatting'
4650
)
4751
$exportedFunctions = (Get-Command -Module PSNotes -CommandType Function).Name
4852
foreach ($func in $expectedFunctions) {

0 commit comments

Comments
 (0)