Files
clawdbot/apps/macos/Tests/ClawdbotIPCTests/WebChatManagerTests.swift
2026-01-04 14:38:51 +00:00

12 lines
311 B
Swift

import Testing
@testable import Clawdbot
@Suite(.serialized)
@MainActor
struct WebChatManagerTests {
@Test func preferredSessionKeyIsNonEmpty() async {
let key = await WebChatManager.shared.preferredSessionKey()
#expect(!key.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty)
}
}