Files
steipete--codexbar/Tests/CodexBarTests/PoeProviderDescriptorTests.swift
2026-07-13 12:22:33 +08:00

13 lines
377 B
Swift

import CodexBarCore
import Testing
struct PoeProviderDescriptorTests {
@Test
func `Poe uses the official brand color and icon`() {
let branding = PoeProviderDescriptor.descriptor.branding
#expect(branding.iconResourceName == "ProviderIcon-poe")
#expect(branding.color == ProviderColor(red: 93 / 255, green: 92 / 255, blue: 222 / 255))
}
}