mirror of
https://github.com/home-assistant/iOS.git
synced 2026-06-18 21:51:51 -05:00
23 lines
588 B
Swift
23 lines
588 B
Swift
//
|
|
// ListPickerTests.swift
|
|
// Tests-App
|
|
//
|
|
// Created by Bruno Pantaleão on 11/4/25.
|
|
// Copyright © 2025 Home Assistant. All rights reserved.
|
|
//
|
|
@testable import HomeAssistant
|
|
import SnapshotTesting
|
|
import Testing
|
|
|
|
struct ListPickerTests {
|
|
@MainActor
|
|
@Test func testLitPickerUI() async throws {
|
|
assertLightDarkSnapshots(of: ListPickerPreview.standard, drawHierarchyInKeyWindow: true)
|
|
}
|
|
|
|
@MainActor
|
|
@Test func testLitPickerContentUI() async throws {
|
|
assertLightDarkSnapshots(of: ListPickerPreview.content, drawHierarchyInKeyWindow: true)
|
|
}
|
|
}
|