Files
clawdbot/apps/macos/Tests/ClawdbotIPCTests/WebChatManagerTests.swift
2026-01-27 12:21:02 +00:00

12 lines
310 B
Swift

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