Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions Test/public/convertMeetingAttendeesToMarkdown.test.ps1
Original file line number Diff line number Diff line change
@@ -1,14 +1,3 @@
function Test_ConvertMeetingAttendeesToMarkdown_EmptyInput {

# Arrange
$input = ""

# Act
$result = Convert-NotesMeetingAttendeesToMarkdown -MeetingAttendees $input

# Assert
Assert-AreEqual -Expected "" -Presented $result -Comment "Empty input should return empty string"
}

function Test_ConvertMeetingAttendeesToMarkdown_HeaderOnly {

Expand Down
2 changes: 1 addition & 1 deletion public/convertMeetingAttendeesToMarkdown.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
function Convert-NotesMeetingAttendeesToMarkdown {
[CmdletBinding()]
param(
[Parameter(Position = 0, ValueFromPipeline)][string]$MeetingAttendees,
[Parameter(Mandatory,Position = 0, ValueFromPipeline)][string]$MeetingAttendees,
[Parameter()][switch]$SetClipboard
)

Expand Down
Loading