Skip to content
Merged
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
4 changes: 3 additions & 1 deletion updater/tests/update-dependency.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,9 @@ switch ($action)
$output | Should -Contain 'latestTag=0.28.0'
$output | Should -Contain 'latestTagNice=v0.28.0'
$output | Should -Contain 'url=https://github.com/getsentry/sentry-cli'
$output | Should -Contain 'mainBranch=main'
# sentry-cli has both `main` and `master`; which one is reported depends on
# which currently points at HEAD upstream, so accept either.
($output | Where-Object { $_ -like 'mainBranch=*' }) | Should -BeIn @('mainBranch=main', 'mainBranch=master')
}
}

Expand Down
Loading