refactor(mac): remove clawdis-mac browser cli

This commit is contained in:
Peter Steinberger
2025-12-20 01:06:27 +00:00
parent a526d3c1f2
commit 80a87e5f9e
3 changed files with 0 additions and 661 deletions

View File

@@ -1,20 +0,0 @@
import Testing
@testable import ClawdisCLI
@Suite struct BrowserCLITests {
@Test func tabsOutputIncludesFullTargetId() async throws {
let res: [String: Any] = [
"running": true,
"tabs": [
[
"targetId": "57A01309E14B5DEE0FB41F908515A2FC",
"title": "Example",
"url": "https://example.com/",
],
],
]
let lines = BrowserCLI._testFormatTabs(res: res)
#expect(lines.contains(" id: 57A01309E14B5DEE0FB41F908515A2FC"))
}
}