Stop stale command palette empty-state flashes

This commit is contained in:
Lawrence Chen 2026-03-30 18:50:10 -07:00
parent 2877e2c80a
commit 0322e78e8a
No known key found for this signature in database
2 changed files with 14 additions and 1 deletions

View file

@ -499,6 +499,20 @@ final class CommandPaletteSearchEngineTests: XCTestCase {
)
}
func testPendingEmptyStateIsPreservedForSameResolvedNoMatchQuery() {
XCTAssertTrue(
ContentView.commandPaletteShouldPreserveEmptyStateWhileSearchPending(
isSearchPending: true,
visibleResultsScopeMatches: true,
resolvedSearchScopeMatches: true,
resolvedSearchFingerprintMatches: true,
resolvedResultsAreEmpty: true,
currentMatchingQuery: "zzzzzzzz",
resolvedMatchingQuery: "zzzzzzzz"
)
)
}
func testPendingEmptyStateIsNotPreservedWhenQueryDoesNotRefineResolvedNoMatch() {
XCTAssertFalse(
ContentView.commandPaletteShouldPreserveEmptyStateWhileSearchPending(