diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b92ffa3..476e1f5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,7 +3,7 @@ on: push jobs: build: name: build - runs-on: macOS-12 + runs-on: macOS-14 steps: - name: checkout uses: actions/checkout@master diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 62b5573..67f2bb6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,18 +1,22 @@ name: test -on: push +on: pull_request jobs: build: name: test - runs-on: macOS-12 + runs-on: macos-latest steps: - name: checkout uses: actions/checkout@master - - name: swift test + - name: macOS test run: | # TODO: @CSolanaM macOS tests not passing because CI screen scale factor is 1, local is 2 # xcodebuild test -destination platform="macOS" -scheme "SkeletonUISnapshotTests" - # xcodebuild test -destination name="Apple TV" -scheme "SkeletonUISnapshotTests" - # xcodebuild test -destination name="Apple TV 4K (3rd generation)" -scheme "SkeletonUISnapshotTests" - xcodebuild test -destination name="iPhone 8" -scheme "SkeletonUISnapshotTests" - xcodebuild test -destination name="iPhone 14 Pro Max" -scheme "SkeletonUISnapshotTests" - xcodebuild test -destination name="iPad Pro (12.9-inch) (6th generation)" -scheme "SkeletonUISnapshotTests" + - name: tvOS test + run: | + xcodebuild test -destination 'platform=tvOS Simulator,name=Apple TV,OS=17.5' -scheme 'SkeletonUI' + - name: tvOS 4k test + run: | + xcodebuild test -destination 'platform=tvOS Simulator,name=Apple TV 4K (3rd generation),OS=17.5' -scheme 'SkeletonUI' + - name: iOS test + run: | + xcodebuild test -destination 'platform=iOS Simulator,name=iPhone 15 Pro,OS=17.5' -scheme 'SkeletonUI' diff --git a/Sources/SkeletonUI/Enumerations/ShapeType.swift b/Sources/SkeletonUI/Enumerations/ShapeType.swift index 9c9c567..65f1010 100644 --- a/Sources/SkeletonUI/Enumerations/ShapeType.swift +++ b/Sources/SkeletonUI/Enumerations/ShapeType.swift @@ -1,11 +1,11 @@ import SwiftUI -public enum RoundedType: Equatable { +public enum RoundedType: Equatable, Sendable { case radius(CGFloat, style: RoundedCornerStyle = .continuous) case size(CGSize, style: RoundedCornerStyle = .continuous) } -public enum ShapeType: Equatable { +public enum ShapeType: Equatable, Sendable { case rounded(RoundedType) case rectangle case circle @@ -25,7 +25,7 @@ public enum ShapeType: Equatable { case .ellipse: return Ellipse() case .capsule: - return Capsule() + return Capsule(style: .circular) } } } diff --git a/Tests/SkeletonUISnapshotTests/SnapshotTests.swift b/Tests/SkeletonUISnapshotTests/SnapshotTests.swift index 4d2f7a9..ffe148d 100644 --- a/Tests/SkeletonUISnapshotTests/SnapshotTests.swift +++ b/Tests/SkeletonUISnapshotTests/SnapshotTests.swift @@ -130,7 +130,7 @@ final class SnapshotTests: XCTestCase { } func testLoadingSkeletonForEach() { - let view = SkeletonList(with: [String]()) { loading, item in + let view = SkeletonForEach(with: [String]()) { loading, item in Text(item).skeleton(with: loading) } assertNamedSnapshot(matching: view, as: .image(size: CGSize(width: 100, height: 25))) diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomImage.Apple-TV-1-dark.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomImage.Apple-TV-1-dark.png new file mode 100644 index 0000000..dd4ba36 Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomImage.Apple-TV-1-dark.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomImage.Apple-TV-1-light.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomImage.Apple-TV-1-light.png new file mode 100644 index 0000000..f71198f Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomImage.Apple-TV-1-light.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomSecureField.Apple-TV-1-dark.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomSecureField.Apple-TV-1-dark.png new file mode 100644 index 0000000..1c311e7 Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomSecureField.Apple-TV-1-dark.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomSecureField.Apple-TV-1-light.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomSecureField.Apple-TV-1-light.png new file mode 100644 index 0000000..9f3151e Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomSecureField.Apple-TV-1-light.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomSize.Apple-TV-1-dark.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomSize.Apple-TV-1-dark.png new file mode 100644 index 0000000..dd4ba36 Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomSize.Apple-TV-1-dark.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomSize.Apple-TV-1-light.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomSize.Apple-TV-1-light.png new file mode 100644 index 0000000..f71198f Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomSize.Apple-TV-1-light.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomText.Apple-TV-1-dark.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomText.Apple-TV-1-dark.png new file mode 100644 index 0000000..c9f1631 Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomText.Apple-TV-1-dark.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomText.Apple-TV-1-light.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomText.Apple-TV-1-light.png new file mode 100644 index 0000000..86943b8 Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomText.Apple-TV-1-light.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomTextField.Apple-TV-1-dark.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomTextField.Apple-TV-1-dark.png new file mode 100644 index 0000000..1c311e7 Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomTextField.Apple-TV-1-dark.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomTextField.Apple-TV-1-light.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomTextField.Apple-TV-1-light.png new file mode 100644 index 0000000..9f3151e Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomTextField.Apple-TV-1-light.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomToggle.Apple-TV-1-dark.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomToggle.Apple-TV-1-dark.png new file mode 100644 index 0000000..6ed3290 Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomToggle.Apple-TV-1-dark.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomToggle.Apple-TV-1-light.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomToggle.Apple-TV-1-light.png new file mode 100644 index 0000000..9d4263b Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testCustomToggle.Apple-TV-1-light.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultImage.Apple-TV-1-dark.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultImage.Apple-TV-1-dark.png new file mode 100644 index 0000000..dd4ba36 Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultImage.Apple-TV-1-dark.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultImage.Apple-TV-1-light.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultImage.Apple-TV-1-light.png new file mode 100644 index 0000000..f71198f Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultImage.Apple-TV-1-light.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultSecureField.Apple-TV-1-dark.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultSecureField.Apple-TV-1-dark.png new file mode 100644 index 0000000..449445d Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultSecureField.Apple-TV-1-dark.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultSecureField.Apple-TV-1-light.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultSecureField.Apple-TV-1-light.png new file mode 100644 index 0000000..283e68e Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultSecureField.Apple-TV-1-light.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultSkeletonForEach.Apple-TV-1-dark.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultSkeletonForEach.Apple-TV-1-dark.png new file mode 100644 index 0000000..4b4b1f1 Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultSkeletonForEach.Apple-TV-1-dark.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultSkeletonForEach.Apple-TV-1-light.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultSkeletonForEach.Apple-TV-1-light.png new file mode 100644 index 0000000..f13180c Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultSkeletonForEach.Apple-TV-1-light.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultSkeletonForEach.iPhone-3-dark.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultSkeletonForEach.iPhone-3-dark.png index edc7e7c..b6fb51d 100644 Binary files a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultSkeletonForEach.iPhone-3-dark.png and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultSkeletonForEach.iPhone-3-dark.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultSkeletonForEach.iPhone-3-light.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultSkeletonForEach.iPhone-3-light.png index e8799c5..962a775 100644 Binary files a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultSkeletonForEach.iPhone-3-light.png and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultSkeletonForEach.iPhone-3-light.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultSkeletonList.Apple-TV-1-dark.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultSkeletonList.Apple-TV-1-dark.png new file mode 100644 index 0000000..1e3bb8e Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultSkeletonList.Apple-TV-1-dark.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultSkeletonList.Apple-TV-1-light.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultSkeletonList.Apple-TV-1-light.png new file mode 100644 index 0000000..1e3bb8e Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultSkeletonList.Apple-TV-1-light.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultText.Apple-TV-1-dark.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultText.Apple-TV-1-dark.png new file mode 100644 index 0000000..449445d Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultText.Apple-TV-1-dark.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultText.Apple-TV-1-light.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultText.Apple-TV-1-light.png new file mode 100644 index 0000000..283e68e Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultText.Apple-TV-1-light.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultTextField.Apple-TV-1-dark.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultTextField.Apple-TV-1-dark.png new file mode 100644 index 0000000..449445d Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultTextField.Apple-TV-1-dark.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultTextField.Apple-TV-1-light.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultTextField.Apple-TV-1-light.png new file mode 100644 index 0000000..283e68e Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultTextField.Apple-TV-1-light.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultToggle.Apple-TV-1-dark.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultToggle.Apple-TV-1-dark.png new file mode 100644 index 0000000..449445d Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultToggle.Apple-TV-1-dark.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultToggle.Apple-TV-1-light.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultToggle.Apple-TV-1-light.png new file mode 100644 index 0000000..283e68e Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testDefaultToggle.Apple-TV-1-light.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.Apple-TV-1-dark.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.Apple-TV-1-dark.png new file mode 100644 index 0000000..f8ec7df Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.Apple-TV-1-dark.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.Apple-TV-1-light.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.Apple-TV-1-light.png new file mode 100644 index 0000000..0a5bcac Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.Apple-TV-1-light.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.Apple-TV-2-dark.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.Apple-TV-2-dark.png index 1ead316..b060846 100644 Binary files a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.Apple-TV-2-dark.png and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.Apple-TV-2-dark.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.Apple-TV-2-light.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.Apple-TV-2-light.png index 1ead316..50ef9fe 100644 Binary files a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.Apple-TV-2-light.png and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.Apple-TV-2-light.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.iPad-2-dark.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.iPad-2-dark.png index cb25cb6..dac3ec5 100644 Binary files a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.iPad-2-dark.png and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.iPad-2-dark.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.iPad-2-light.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.iPad-2-light.png index d7d1713..aecfa1f 100644 Binary files a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.iPad-2-light.png and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.iPad-2-light.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.iPhone-2-dark.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.iPhone-2-dark.png index cb25cb6..dac3ec5 100644 Binary files a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.iPhone-2-dark.png and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.iPhone-2-dark.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.iPhone-2-light.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.iPhone-2-light.png index d7d1713..aecfa1f 100644 Binary files a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.iPhone-2-light.png and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.iPhone-2-light.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.iPhone-3-dark.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.iPhone-3-dark.png index 0aefdb8..8fcf9e8 100644 Binary files a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.iPhone-3-dark.png and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.iPhone-3-dark.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.iPhone-3-light.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.iPhone-3-light.png index d83dbf1..29b60d8 100644 Binary files a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.iPhone-3-light.png and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonForEach.iPhone-3-light.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonList.Apple-TV-1-dark.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonList.Apple-TV-1-dark.png new file mode 100644 index 0000000..1e3bb8e Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonList.Apple-TV-1-dark.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonList.Apple-TV-1-light.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonList.Apple-TV-1-light.png new file mode 100644 index 0000000..1e3bb8e Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testLoadingSkeletonList.Apple-TV-1-light.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testSystemImage.Apple-TV-1-dark.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testSystemImage.Apple-TV-1-dark.png new file mode 100644 index 0000000..dd4ba36 Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testSystemImage.Apple-TV-1-dark.png differ diff --git a/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testSystemImage.Apple-TV-1-light.png b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testSystemImage.Apple-TV-1-light.png new file mode 100644 index 0000000..f71198f Binary files /dev/null and b/Tests/SkeletonUISnapshotTests/__Snapshots__/SnapshotTests/testSystemImage.Apple-TV-1-light.png differ