Files
clawdbot/apps/macos/Tests/ClawdisIPCTests/WebChatManagerTests.swift
2025-12-20 01:27:51 +00:00

12 lines
310 B
Swift

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