import XCTest import SwiftUI import UIKit @testable import Makima final class SmokeTests: XCTestCase { func testPaletteBackgroundNotTransparent() throws { // Basic sanity: the color resolves on iOS let cg = UIColor(Palette.background).cgColor XCTAssertNotNil(cg.components) } func testWebSocketStatusLabels() { XCTAssertEqual(WebSocketStatus.idle.label, "WS//IDLE") XCTAssertEqual(WebSocketStatus.online.label, "WS//ONLINE") XCTAssertEqual(WebSocketStatus.offline.label, "WS//OFFLINE") } }