-
Notifications
You must be signed in to change notification settings - Fork 227
[CI] Support Xcode 26 #3825
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
testableapple
wants to merge
5
commits into
develop
Choose a base branch
from
ci/xcode26
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
[CI] Support Xcode 26 #3825
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
1b54271
[CI] Support Xcode 26
testableapple 3e1405d
Merge branch 'develop' into ci/xcode26
testableapple 9bb78a0
[CI] Resolve binary size bloat on Xcode 26 (#3847)
testableapple 267c095
Uncomment checks
testableapple c2cc43b
Update xcframeworks podspec
testableapple File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -21,33 +21,28 @@ jobs: | |
| strategy: | ||
| matrix: | ||
| include: | ||
| - ios: 18.5 | ||
| xcode: 16.4 | ||
| os: macos-15 | ||
| - ios: "26.0" | ||
| device: "iPhone 17 Pro" | ||
| setup_runtime: false | ||
| - ios: "18.5" | ||
| device: "iPhone 16 Pro" | ||
| setup_runtime: false | ||
| - ios: 17.5 | ||
| xcode: 15.4 | ||
| os: macos-14 | ||
| - ios: "17.5" | ||
| device: "iPhone 15 Pro" | ||
| setup_runtime: false | ||
| - ios: 16.4 | ||
| xcode: 15.3 # fails on 15.4 | ||
| os: macos-14 | ||
| setup_runtime: true | ||
| - ios: "16.4" | ||
| device: "iPhone 14 Pro" | ||
| setup_runtime: true | ||
| - ios: 15.5 | ||
| xcode: 15.3 # fails on 15.4 | ||
| os: macos-14 | ||
| - ios: "15.5" | ||
| device: "iPhone 13 Pro" | ||
| setup_runtime: true | ||
| fail-fast: false | ||
| runs-on: ${{ matrix.os }} | ||
| runs-on: macos-15 | ||
| env: | ||
| GITHUB_EVENT: ${{ toJson(github.event) }} | ||
| ALLURE_TOKEN: ${{ secrets.ALLURE_TOKEN }} | ||
| STREAM_DEMO_APP_SECRET: ${{ secrets.STREAM_DEMO_APP_SECRET }} | ||
| XCODE_VERSION: ${{ matrix.xcode }} | ||
| XCODE_VERSION: "26.0.1" | ||
| IOS_SIMULATOR_DEVICE: "${{ matrix.device }} (${{ matrix.ios }})" # For the Allure report | ||
| steps: | ||
| - uses: actions/[email protected] | ||
|
|
@@ -94,30 +89,25 @@ jobs: | |
| strategy: | ||
| matrix: | ||
| include: | ||
| - ios: 18.5 | ||
| xcode: 16.4 | ||
| os: macos-15 | ||
| - ios: "26.0" | ||
| device: "iPhone 17 Pro" | ||
| setup_runtime: false | ||
| - ios: "18.5" | ||
| device: "iPhone 16 Pro" | ||
| setup_runtime: false | ||
| - ios: 17.5 | ||
| xcode: 15.4 | ||
| os: macos-14 | ||
| - ios: "17.5" | ||
| device: "iPhone 15 Pro" | ||
| setup_runtime: false | ||
| - ios: 16.4 | ||
| xcode: 15.3 # fails on 15.4 | ||
| os: macos-14 | ||
| setup_runtime: true | ||
| - ios: "16.4" | ||
| device: "iPhone 14 Pro" | ||
| setup_runtime: true | ||
| - ios: 15.5 | ||
| xcode: 15.3 # fails on 15.4 | ||
| os: macos-14 | ||
| - ios: "15.5" | ||
| device: "iPhone 13 Pro" | ||
| setup_runtime: true | ||
| fail-fast: false | ||
| runs-on: ${{ matrix.os }} | ||
| runs-on: macos-15 | ||
| env: | ||
| XCODE_VERSION: ${{ matrix.xcode }} | ||
| XCODE_VERSION: "26.0.1" | ||
| steps: | ||
| - uses: actions/[email protected] | ||
| - uses: ./.github/actions/bootstrap | ||
|
|
@@ -147,24 +137,25 @@ jobs: | |
| fastlane/test_output/logs/*/Diagnostics/simctl_diagnostics/DiagnosticReports/* | ||
|
|
||
| build-old-xcode: | ||
| name: Build LLC + UI (Xcode 15) | ||
| name: Build LLC + UI (Old Xcode) | ||
| runs-on: macos-14 | ||
| env: | ||
| XCODE_VERSION: "15.4" | ||
| XCODE_VERSION: "16.1" | ||
| steps: | ||
| - name: Connect Bot | ||
| uses: webfactory/[email protected] | ||
| with: | ||
| ssh-private-key: ${{ secrets.BOT_SSH_PRIVATE_KEY }} | ||
| - uses: actions/[email protected] | ||
| - uses: ./.github/actions/xcode-cache | ||
| - uses: ./.github/actions/ruby-cache | ||
| - name: List Xcode versions | ||
| run: mdfind "kMDItemCFBundleIdentifier = 'com.apple.dt.Xcode'" | ||
| - name: Build LLC | ||
| run: bundle exec fastlane test device:"iPhone 8" build_for_testing:true | ||
| run: bundle exec fastlane test device:"iPhone 16" build_for_testing:true | ||
| timeout-minutes: 25 | ||
| - name: Build UI | ||
| run: bundle exec fastlane test_ui device:"iPhone 8" build_for_testing:true | ||
| run: bundle exec fastlane test_ui device:"iPhone 16" build_for_testing:true | ||
| timeout-minutes: 25 | ||
| - name: Build XCFrameworks | ||
| run: bundle exec fastlane build_xcframeworks | ||
|
|
@@ -177,7 +168,7 @@ jobs: | |
| name: Automated Code Review | ||
| runs-on: macos-14 | ||
| env: | ||
| XCODE_VERSION: "15.4" | ||
| XCODE_VERSION: "16.1" | ||
| steps: | ||
| - uses: actions/[email protected] | ||
| - uses: ./.github/actions/bootstrap | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,7 +20,7 @@ concurrency: | |
|
|
||
| env: | ||
| HOMEBREW_NO_INSTALL_CLEANUP: 1 # Disable cleanup for homebrew, we don't need it on CI | ||
| IOS_SIMULATOR_DEVICE: "iPhone 16 Pro (18.5)" | ||
| IOS_SIMULATOR_DEVICE: "iPhone 17 Pro (26.0)" | ||
testableapple marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| GITHUB_PR_NUM: ${{ github.event.pull_request.number }} | ||
|
|
||
|
|
@@ -48,7 +48,7 @@ jobs: | |
| name: Automated Code Review | ||
| runs-on: macos-14 | ||
| env: | ||
| XCODE_VERSION: "15.4" | ||
| XCODE_VERSION: "16.1" | ||
| if: ${{ github.event.inputs.record_snapshots != 'true' }} | ||
| steps: | ||
| - uses: actions/[email protected] | ||
|
|
@@ -63,21 +63,22 @@ jobs: | |
| if: startsWith(github.event.pull_request.head.ref, 'release/') | ||
|
|
||
| build-old-xcode: | ||
| name: Build LLC + UI (Xcode 15) | ||
| name: Build SDKs (Old Xcode) | ||
| runs-on: macos-14 | ||
| if: ${{ github.event.inputs.record_snapshots != 'true' }} | ||
| env: | ||
| XCODE_VERSION: "15.4" | ||
| XCODE_VERSION: "16.1" | ||
| steps: | ||
| - uses: actions/[email protected] | ||
| - uses: ./.github/actions/xcode-cache | ||
| - uses: ./.github/actions/ruby-cache | ||
| - name: List Xcode versions | ||
| run: mdfind "kMDItemCFBundleIdentifier = 'com.apple.dt.Xcode'" | ||
| - name: Build LLC | ||
| run: bundle exec fastlane test device:"iPhone 13" build_for_testing:true | ||
| run: bundle exec fastlane test device:"iPhone 16" build_for_testing:true | ||
| timeout-minutes: 25 | ||
| - name: Build UI | ||
| run: bundle exec fastlane test_ui device:"iPhone 13" build_for_testing:true | ||
| run: bundle exec fastlane test_ui device:"iPhone 16" build_for_testing:true | ||
| timeout-minutes: 25 | ||
|
|
||
| test-llc-debug: | ||
|
|
@@ -179,6 +180,8 @@ jobs: | |
| - build-test-app-and-frameworks | ||
| env: | ||
| LAUNCH_ID: ${{ needs.allure_testops_launch.outputs.launch_id }} | ||
| IOS_SIMULATOR_DEVICE: "iPhone 16 Pro (18.5)" # TODO: IOS-1181 | ||
| XCODE_VERSION: "16.4" # TODO: IOS-1181 | ||
| strategy: | ||
| matrix: | ||
| batch: [0, 1] | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,6 +11,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). | |
| - Add `ChatChannelController.setPushPreference(level:)` | ||
| - Add `ChatChannelController.snoozePushNotifications(until:)` | ||
|
|
||
| ## ⚠️ Important | ||
| - From now on, our XCFrameworks will be built with Swift 5.9. In order to use them, you need Xcode 15 or above. | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should we use we use 5.10 like Package.swift? |
||
|
|
||
| # [4.89.0](https://github.com/GetStream/stream-chat-swift/releases/tag/4.89.0) | ||
| _September 22, 2025_ | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,25 +1,25 @@ | ||
| Pod::Spec.new do |spec| | ||
| spec.name = "StreamChat-XCFramework" | ||
| spec.version = "4.89.0" | ||
| spec.summary = "StreamChat iOS Client" | ||
| spec.description = "stream-chat-swift is the official Swift client for Stream Chat, a service for building chat applications." | ||
| spec.name = 'StreamChat-XCFramework' | ||
| spec.version = '4.89.0' | ||
| spec.summary = 'StreamChat iOS Client' | ||
| spec.description = 'stream-chat-swift is the official Swift client for Stream Chat, a service for building chat applications.' | ||
|
|
||
| spec.homepage = "https://getstream.io/chat/" | ||
| spec.license = { :type => "BSD-3", :file => "LICENSE" } | ||
| spec.author = { "getstream.io" => "[email protected]" } | ||
| spec.social_media_url = "https://getstream.io" | ||
| spec.homepage = 'https://getstream.io/chat/' | ||
| spec.license = { type: 'BSD-3', file: 'LICENSE' } | ||
| spec.author = { 'getstream.io' => '[email protected]' } | ||
| spec.social_media_url = 'https://getstream.io' | ||
|
|
||
| spec.swift_version = '5.7' | ||
| spec.ios.deployment_target = '13.0' | ||
| spec.swift_version = '5.9' | ||
| spec.ios.deployment_target = '13.0' | ||
| spec.requires_arc = true | ||
|
|
||
| spec.framework = "Foundation" | ||
| spec.ios.framework = "UIKit" | ||
| spec.framework = 'Foundation' | ||
| spec.ios.framework = 'UIKit' | ||
|
|
||
| spec.module_name = "StreamChat" | ||
| spec.source = { :http => "https://github.com/GetStream/stream-chat-swift/releases/download/#{spec.version}/#{spec.module_name}.zip" } | ||
| spec.module_name = 'StreamChat' | ||
| spec.source = { http: "https://github.com/GetStream/stream-chat-swift/releases/download/#{spec.version}/#{spec.module_name}.zip" } | ||
| spec.vendored_frameworks = "#{spec.module_name}.xcframework" | ||
| spec.preserve_paths = "#{spec.module_name}.xcframework/*" | ||
|
|
||
| spec.cocoapods_version = ">= 1.11.0" | ||
| spec.cocoapods_version = '>= 1.11.0' | ||
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,24 +1,24 @@ | ||
| Pod::Spec.new do |spec| | ||
| spec.name = "StreamChat" | ||
| spec.version = "4.89.0" | ||
| spec.summary = "StreamChat iOS Chat Client" | ||
| spec.description = "stream-chat-swift is the official Swift client for Stream Chat, a service for building chat applications." | ||
| spec.name = 'StreamChat' | ||
| spec.version = '4.89.0' | ||
| spec.summary = 'StreamChat iOS Chat Client' | ||
| spec.description = 'stream-chat-swift is the official Swift client for Stream Chat, a service for building chat applications.' | ||
|
|
||
| spec.homepage = "https://getstream.io/chat/" | ||
| spec.license = { :type => "BSD-3", :file => "LICENSE" } | ||
| spec.author = { "getstream.io" => "[email protected]" } | ||
| spec.social_media_url = "https://getstream.io" | ||
| spec.homepage = 'https://getstream.io/chat/' | ||
| spec.license = { type: 'BSD-3', file: 'LICENSE' } | ||
| spec.author = { 'getstream.io' => '[email protected]' } | ||
| spec.social_media_url = 'https://getstream.io' | ||
|
|
||
| spec.swift_version = '5.7' | ||
| spec.swift_version = '5.9' | ||
| spec.ios.deployment_target = '13.0' | ||
| spec.osx.deployment_target = '11.0' | ||
| spec.requires_arc = true | ||
|
|
||
| spec.framework = "Foundation" | ||
| spec.ios.framework = "UIKit" | ||
| spec.framework = 'Foundation' | ||
| spec.ios.framework = 'UIKit' | ||
|
|
||
| spec.module_name = "StreamChat" | ||
| spec.source = { :git => "https://github.com/GetStream/stream-chat-swift.git", :tag => "#{spec.version}" } | ||
| spec.source_files = ["Sources/StreamChat/**/*.swift"] | ||
| spec.resource_bundles = { "StreamChat" => ["Sources/StreamChat/**/*.xcdatamodeld"] } | ||
| spec.module_name = 'StreamChat' | ||
| spec.source = { git: 'https://github.com/GetStream/stream-chat-swift.git', tag: "#{spec.version}" } | ||
| spec.source_files = ['Sources/StreamChat/**/*.swift'] | ||
| spec.resource_bundles = { 'StreamChat' => ['Sources/StreamChat/**/*.xcdatamodeld'] } | ||
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,26 +1,26 @@ | ||
| Pod::Spec.new do |spec| | ||
| spec.name = "StreamChatUI-XCFramework" | ||
| spec.version = "4.89.0" | ||
| spec.summary = "StreamChat UI Components" | ||
| spec.description = "StreamChatUI SDK offers flexible UI components able to display data provided by StreamChat SDK." | ||
| spec.name = 'StreamChatUI-XCFramework' | ||
| spec.version = '4.89.0' | ||
| spec.summary = 'StreamChat UI Components' | ||
| spec.description = 'StreamChatUI SDK offers flexible UI components able to display data provided by StreamChat SDK.' | ||
|
|
||
| spec.homepage = "https://getstream.io/chat/" | ||
| spec.license = { :type => "BSD-3", :file => "LICENSE" } | ||
| spec.author = { "getstream.io" => "[email protected]" } | ||
| spec.social_media_url = "https://getstream.io" | ||
| spec.homepage = 'https://getstream.io/chat/' | ||
| spec.license = { type: 'BSD-3', file: 'LICENSE' } | ||
| spec.author = { 'getstream.io' => '[email protected]' } | ||
| spec.social_media_url = 'https://getstream.io' | ||
|
|
||
| spec.swift_version = '5.7' | ||
| spec.platform = :ios, "13.0" | ||
| spec.swift_version = '5.9' | ||
| spec.platform = :ios, '13.0' | ||
| spec.requires_arc = true | ||
|
|
||
| spec.framework = "Foundation", "UIKit" | ||
| spec.framework = 'Foundation', 'UIKit' | ||
|
|
||
| spec.module_name = "StreamChatUI" | ||
| spec.source = { :http => "https://github.com/GetStream/stream-chat-swift/releases/download//#{spec.version}/#{spec.module_name}.zip" } | ||
| spec.module_name = 'StreamChatUI' | ||
| spec.source = { http: "https://github.com/GetStream/stream-chat-swift/releases/download//#{spec.version}/#{spec.module_name}.zip" } | ||
coderabbitai[bot] marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| spec.vendored_frameworks = "#{spec.module_name}.xcframework" | ||
| spec.preserve_paths = "#{spec.module_name}.xcframework/*" | ||
|
|
||
| spec.dependency "StreamChat-XCFramework", "#{spec.version}" | ||
| spec.dependency 'StreamChat-XCFramework', "#{spec.version}" | ||
|
|
||
| spec.cocoapods_version = ">= 1.11.0" | ||
| spec.cocoapods_version = '>= 1.11.0' | ||
| end | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,24 +1,25 @@ | ||
| Pod::Spec.new do |spec| | ||
| spec.name = "StreamChatUI" | ||
| spec.version = "4.89.0" | ||
| spec.summary = "StreamChat UI Components" | ||
| spec.description = "StreamChatUI SDK offers flexible UI components able to display data provided by StreamChat SDK." | ||
| spec.name = 'StreamChatUI' | ||
| spec.version = '4.89.0' | ||
| spec.summary = 'StreamChat UI Components' | ||
| spec.description = 'StreamChatUI SDK offers flexible UI components able to display data provided by StreamChat SDK.' | ||
|
|
||
| spec.homepage = "https://getstream.io/chat/" | ||
| spec.license = { :type => "BSD-3", :file => "LICENSE" } | ||
| spec.author = { "getstream.io" => "[email protected]" } | ||
| spec.social_media_url = "https://getstream.io" | ||
| spec.homepage = 'https://getstream.io/chat/' | ||
| spec.license = { type: 'BSD-3', file: 'LICENSE' } | ||
| spec.author = { 'getstream.io' => '[email protected]' } | ||
| spec.social_media_url = 'https://getstream.io' | ||
|
|
||
| spec.swift_version = '5.7' | ||
| spec.platform = :ios, "13.0" | ||
| spec.swift_version = '5.9' | ||
| spec.platform = :ios, '13.0' | ||
| spec.requires_arc = true | ||
|
|
||
| spec.framework = "Foundation", "UIKit" | ||
| spec.framework = 'Foundation', 'UIKit' | ||
|
|
||
| spec.module_name = "StreamChatUI" | ||
| spec.source = { :git => "https://github.com/GetStream/stream-chat-swift.git", :tag => "#{spec.version}" } | ||
| spec.source_files = ["Sources/StreamChatUI/**/*.swift", "Sources/StreamNuke/**/*.swift", "Sources/StreamSwiftyGif/**/*.swift"] | ||
| spec.resource_bundles = { "StreamChatUIResources" => ["Sources/StreamChatUI/Resources/**/*"] } | ||
| spec.module_name = 'StreamChatUI' | ||
| spec.source = { git: 'https://github.com/GetStream/stream-chat-swift.git', tag: "#{spec.version}" } | ||
| spec.source_files = ['Sources/StreamChatUI/**/*.swift', 'Sources/StreamNuke/**/*.swift', | ||
| 'Sources/StreamSwiftyGif/**/*.swift'] | ||
| spec.resource_bundles = { 'StreamChatUIResources' => ['Sources/StreamChatUI/Resources/**/*'] } | ||
|
|
||
| spec.dependency "StreamChat", "#{spec.version}" | ||
| spec.dependency 'StreamChat', "#{spec.version}" | ||
| end |
Binary file modified
BIN
+19 Bytes
(100%)
...ts__/ChatChannelVC+SwiftUI_Tests/test_chatChannel_isPopulated.default-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2.19 KB
(91%)
...VC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.default-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2.69 KB
(90%)
...sts/test_customNavigationViewValues_arePopulated.extraExtraExtraLarge-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2.13 KB
(91%)
...ests/test_customNavigationViewValues_arePopulated.rightToLeftLayout-default.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-163 Bytes
(99%)
...nelVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.small-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+22 Bytes
(100%)
...nelVC_Tests/test_channelWithDraftMessage_showsDraftInComposer.default-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+29 Bytes
(100%)
...aftMessage_whenDraftIsUpdatedFromEvent_updatesDraftInComposer.default-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+13 Bytes
(100%)
...tIsUpdatedFromEvent_whenThread_shouldNotUpdateChannelComposer.default-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+23 Bytes
(100%)
...test_channelWithDraftMessage_withCommand_showsDraftInComposer.default-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-24 Bytes
(100%)
...hannelWithDraftMessage_withQuotedMessage_showsDraftInComposer.default-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+37 Bytes
(100%)
...annelWithDraftMessage_withUnknownCommand_showsDraftInComposer.default-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+494 Bytes
(100%)
...nnel/__Snapshots__/ChatChannelVC_Tests/test_defaultAppearance.default-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-30 Bytes
(100%)
...annelVC_Tests/test_deletedMessagesVisibilityWhenAlwaysVisible.default-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-24 Bytes
(100%)
...elVC_Tests/test_deletedMessagesVisibilityWhenOnlyVisibleToYou.default-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+419 Bytes
(100%)
...ChannelVC_Tests/test_deletedMessagesWithAttachmentsAppearance.default-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+442 Bytes
(100%)
...hannel/__Snapshots__/ChatChannelVC_Tests/test_emptyAppearance.default-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+722 Bytes
(100%)
...shots__/ChatChannelVC_Tests/test_emptyAppearance.extraExtraExtraLarge-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+395 Bytes
(100%)
...pshots__/ChatChannelVC_Tests/test_emptyAppearance.rightToLeftLayout-default.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+753 Bytes
(110%)
...atChannel/__Snapshots__/ChatChannelVC_Tests/test_emptyAppearance.small-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-11 Bytes
(100%)
...sabled_whenMessageShouldShowDateSeparator_AndIsMarkedAsUnread.default-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-12 Bytes
(100%)
...nabled_whenMessageShouldShowDateSeparator_AndIsMarkedAsUnread.default-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+498 Bytes
(100%)
...ts__/ChatChannelVC_Tests/test_messageListFooterViewAppearance.default-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+498 Bytes
(100%)
...ts__/ChatChannelVC_Tests/test_messageListHeaderViewAppearance.default-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+415 Bytes
(100%)
...apshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance.default-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+537 Bytes
(100%)
...tChannelVC_Tests/test_onlyEmojiMessageAppearance.extraExtraExtraLarge-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+516 Bytes
(100%)
...atChannelVC_Tests/test_onlyEmojiMessageAppearance.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
+685 Bytes
(100%)
..._Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
+362 Bytes
(100%)
...elVC_Tests/test_onlyEmojiMessageAppearance_whenQuotingMessage.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+355 Bytes
(100%)
...st_onlyEmojiMessageAppearance_whenQuotingMessage.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
+166 Bytes
(100%)
...est_onlyEmojiMessageAppearance_whenQuotingMessage.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
+592 Bytes
(100%)
...annelVC_Tests/test_onlyEmojiMessageAppearance_whenQuotingMessage.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
+480 Bytes
(100%)
...ots__/ChatChannelVC_Tests/test_staticDateSeparatorsAppearance.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+5 Bytes
(100%)
...elVC_Tests/test_whenMessageEditedAt_editedMessageIsNotGrouped.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+127 Bytes
(100%)
...CurrentUserIsFollowedByEphemeralMessage_messagesAreNotGrouped.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-10 Bytes
(100%)
...FromCurrentUserIsFollowedByErrorMessage_messagesAreNotGrouped.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-34 Bytes
(100%)
...romCurrentUserIsFollowedBySystemMessage_messagesAreNotGrouped.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+459 Bytes
(100%)
...ameType_shouldUpdateReactionColor.default-light-after-current-user-reaction.png
Oops, something went wrong.
Binary file modified
BIN
+462 Bytes
(100%)
...meType_shouldUpdateReactionColor.default-light-before-current-user-reaction.png
Oops, something went wrong.
Binary file modified
BIN
-19 Bytes
(100%)
..._/ChatChannelVC_Tests/test_whenShouldMessagesStartAtTheTopIsTrue.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
+294 Bytes
(100%)
...fScreen_shouldShowJumpToUnreadPill_whenJumpToUnreadIsDisabled.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+294 Bytes
(100%)
...OfScreen_shouldShowJumpToUnreadPill_whenJumpToUnreadIsEnabled.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+411 Bytes
(100%)
...nreadMessage_whenFeatureIsDisabled_shouldShowABannerOnTopOfIt.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+419 Bytes
(100%)
...UnreadMessage_whenFeatureIsEnabled_shouldShowABannerOnTopOfIt.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-6 Bytes
(100%)
...etween2MessagesFromAnotherUserIs1minOrLess_messagesAreGrouped.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+35 Bytes
(100%)
...n2MessagesFromAnotherUserIsMoreThan1min_messagesAreNotGrouped.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...een2MessagesFromTheCurrentUserIs1minOrLess_messagesAreGrouped.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+55 Bytes
(100%)
...essagesFromTheCurrentUserIsMoreThan1min_messagesAreNotGrouped.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-921 Bytes
(97%)
..._Snapshots__/ChatChannelSearchVC_Tests/test_defaultAppearance.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-942 Bytes
(97%)
...ChatChannelSearchVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
-900 Bytes
(97%)
.../ChatChannelSearchVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
+475 Bytes
(100%)
...h/__Snapshots__/ChatChannelSearchVC_Tests/test_defaultAppearance.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
-958 Bytes
(95%)
.../__Snapshots__/ChatChannelSearchVC_Tests/test_emptyAppearance.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-1.33 KB
(93%)
..._/ChatChannelSearchVC_Tests/test_emptyAppearance.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
-915 Bytes
(95%)
...__/ChatChannelSearchVC_Tests/test_emptyAppearance.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
+534 Bytes
(100%)
...rch/__Snapshots__/ChatChannelSearchVC_Tests/test_emptyAppearance.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
-980 Bytes
(93%)
..._Snapshots__/ChatChannelSearchVC_Tests/test_loadingAppearance.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-1.4 KB
(90%)
...ChatChannelSearchVC_Tests/test_loadingAppearance.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
-921 Bytes
(93%)
.../ChatChannelSearchVC_Tests/test_loadingAppearance.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
+556 Bytes
(100%)
...h/__Snapshots__/ChatChannelSearchVC_Tests/test_loadingAppearance.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
-859 Bytes
(98%)
..._Snapshots__/ChatMessageSearchVC_Tests/test_defaultAppearance.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-1.21 KB
(98%)
...ChatMessageSearchVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
-833 Bytes
(98%)
.../ChatMessageSearchVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
+505 Bytes
(100%)
...h/__Snapshots__/ChatMessageSearchVC_Tests/test_defaultAppearance.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
-958 Bytes
(95%)
.../__Snapshots__/ChatMessageSearchVC_Tests/test_emptyAppearance.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-1.33 KB
(93%)
..._/ChatMessageSearchVC_Tests/test_emptyAppearance.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
-915 Bytes
(95%)
...__/ChatMessageSearchVC_Tests/test_emptyAppearance.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
+534 Bytes
(100%)
...rch/__Snapshots__/ChatMessageSearchVC_Tests/test_emptyAppearance.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
-980 Bytes
(93%)
..._Snapshots__/ChatMessageSearchVC_Tests/test_loadingAppearance.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-1.4 KB
(90%)
...ChatMessageSearchVC_Tests/test_loadingAppearance.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
-921 Bytes
(93%)
.../ChatMessageSearchVC_Tests/test_loadingAppearance.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
+556 Bytes
(100%)
...h/__Snapshots__/ChatMessageSearchVC_Tests/test_loadingAppearance.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
-50 Bytes
(100%)
...tEmptyView_Tests/test_appearanceCustomization_usingAppearance.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-50 Bytes
(100%)
...sts/test_appearanceCustomization_usingAppearance.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
-50 Bytes
(100%)
...ests/test_appearanceCustomization_usingAppearance.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
-94 Bytes
(100%)
...ListEmptyView_Tests/test_appearanceCustomization_usingAppearance.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
+44 Bytes
(100%)
...EmptyView_Tests/test_appearanceCustomization_usingSubclassing.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+44 Bytes
(100%)
...ts/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
+44 Bytes
(100%)
...sts/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
+14 Bytes
(100%)
...istEmptyView_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
-17 Bytes
(100%)
...shots__/ChatChannelListEmptyView_Tests/test_defaultAppearance.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-17 Bytes
(100%)
...hannelListEmptyView_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
-17 Bytes
(100%)
...ChannelListEmptyView_Tests/test_defaultAppearance.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
+39 Bytes
(100%)
...napshots__/ChatChannelListEmptyView_Tests/test_defaultAppearance.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
-6 Bytes
(100%)
...hatChannelListItemView+SwiftUI_Tests/test_injectedSwiftUIView.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...tItemView+SwiftUI_Tests/test_injectedSwiftUIView.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
-25 Bytes
(100%)
...stItemView+SwiftUI_Tests/test_injectedSwiftUIView.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
+19 Bytes
(100%)
..._/ChatChannelListItemView+SwiftUI_Tests/test_injectedSwiftUIView.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(100%)
...ItemView_Tests/test_appearance_previewMessageIsVoiceRecording.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+5 Bytes
(100%)
...s/test_appearance_previewMessageIsVoiceRecording.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(100%)
...ts/test_appearance_previewMessageIsVoiceRecording.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
+5 Bytes
(100%)
...istItemView_Tests/test_appearance_previewMessageIsVoiceRecording.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
-1.78 KB
(96%)
...tChannelListVC+SwiftUI_Tests/test_chatChannelList_isPopulated.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-1.75 KB
(97%)
...C+SwiftUI_Tests/test_chatChannelList_isPopulated.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
-1.76 KB
(96%)
...VC+SwiftUI_Tests/test_chatChannelList_isPopulated.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
+3.53 KB
(110%)
...ChatChannelListVC+SwiftUI_Tests/test_chatChannelList_isPopulated.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
-1.92 KB
(96%)
...VC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-2.21 KB
(96%)
...sts/test_customNavigationViewValues_arePopulated.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
-1.77 KB
(96%)
...ests/test_customNavigationViewValues_arePopulated.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
-125 Bytes
(100%)
...istVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
+774 Bytes
(100%)
...annelListVC_Tests/test_appearanceCustomization_usingComponents.default-dark.png
Oops, something went wrong.
Binary file modified
BIN
-601 Bytes
(99%)
...nnelListVC_Tests/test_appearanceCustomization_usingComponents.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+479 Bytes
(100%)
...nnelListVC_Tests/test_appearanceCustomization_usingSubclassing.default-dark.png
Oops, something went wrong.
Binary file modified
BIN
-918 Bytes
(98%)
...nelListVC_Tests/test_appearanceCustomization_usingSubclassing.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-22 Bytes
(100%)
...shots__/ChatChannelListVC_Tests/test_appearance_withSearchBar.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+517 Bytes
(100%)
...hannelListVC_Tests/test_appearance_withSearchBar.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
-26 Bytes
(100%)
...ChannelListVC_Tests/test_appearance_withSearchBar.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
+1.37 KB
(100%)
...napshots__/ChatChannelListVC_Tests/test_appearance_withSearchBar.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
-602 Bytes
(99%)
.../__Snapshots__/ChatChannelListVC_Tests/test_defaultAppearance.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-407 Bytes
(99%)
..._/ChatChannelListVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
-600 Bytes
(99%)
...__/ChatChannelListVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
+749 Bytes
(100%)
...ist/__Snapshots__/ChatChannelListVC_Tests/test_defaultAppearance.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
-629 Bytes
(98%)
...st/__Snapshots__/ChatChannelListVC_Tests/test_emptyAppearance.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-1.05 KB
(96%)
...s__/ChatChannelListVC_Tests/test_emptyAppearance.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
-618 Bytes
(98%)
...ts__/ChatChannelListVC_Tests/test_emptyAppearance.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
+1.27 KB
(100%)
...lList/__Snapshots__/ChatChannelListVC_Tests/test_emptyAppearance.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
-6 Bytes
(100%)
...ChannelUnreadCountView+SwiftUI_Tests/test_injectedSwiftUIView.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-16 Bytes
(99%)
...CountView+SwiftUI_Tests/test_injectedSwiftUIView.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
+13 Bytes
(100%)
...dCountView+SwiftUI_Tests/test_injectedSwiftUIView.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
-13 Bytes
(99%)
...hatChannelUnreadCountView+SwiftUI_Tests/test_injectedSwiftUIView.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
+21 Bytes
(100%)
...temView_Tests/test_appearance_pdf_whenDownloadedThenShareIcon.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+19 Bytes
(100%)
..._Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+27 Bytes
(100%)
...ChatMessageLinkPreviewView_Tests/test_appearance.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
+4 Bytes
(100%)
.../ChatMessageLinkPreviewView_Tests/test_appearance.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
-94 Bytes
(100%)
...s/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
...reviewView_Tests/test_appearanceCustomization_usingAppearance.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+4 Bytes
(100%)
...sts/test_appearanceCustomization_usingAppearance.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...ests/test_appearanceCustomization_usingAppearance.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
-99 Bytes
(100%)
...nkPreviewView_Tests/test_appearanceCustomization_usingAppearance.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...eviewView_Tests/test_appearanceCustomization_usingSubclassing.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+19 Bytes
(100%)
...ts/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...sts/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
-109 Bytes
(100%)
...kPreviewView_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
+44 Bytes
(100%)
...hatMessageLinkPreviewView_Tests/test_appearance_whenLongTexts.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-5 Bytes
(100%)
...kPreviewView_Tests/test_appearance_whenLongTexts.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
+48 Bytes
(100%)
...nkPreviewView_Tests/test_appearance_whenLongTexts.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
-63 Bytes
(100%)
..._/ChatMessageLinkPreviewView_Tests/test_appearance_whenLongTexts.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
...ChatMessageLinkPreviewView_Tests/test_appearance_whenNoAuthor.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+15 Bytes
(100%)
...nkPreviewView_Tests/test_appearance_whenNoAuthor.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...inkPreviewView_Tests/test_appearance_whenNoAuthor.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
-6 Bytes
(100%)
...__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoAuthor.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
-4 Bytes
(100%)
...ssageLinkPreviewView_Tests/test_appearance_whenNoImagePreview.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+22 Bytes
(100%)
...iewView_Tests/test_appearance_whenNoImagePreview.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
+8 Bytes
(100%)
...viewView_Tests/test_appearance_whenNoImagePreview.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
-96 Bytes
(97%)
...tMessageLinkPreviewView_Tests/test_appearance_whenNoImagePreview.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
+7 Bytes
(100%)
.../ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitle.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+17 Bytes
(100%)
...inkPreviewView_Tests/test_appearance_whenNoTitle.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
...LinkPreviewView_Tests/test_appearance_whenNoTitle.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
-86 Bytes
(100%)
...s__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitle.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...ssageLinkPreviewView_Tests/test_appearance_whenNoTitleAndText.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...iewView_Tests/test_appearance_whenNoTitleAndText.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
-4 Bytes
(100%)
...viewView_Tests/test_appearance_whenNoTitleAndText.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
-92 Bytes
(100%)
...tMessageLinkPreviewView_Tests/test_appearance_whenNoTitleAndText.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
+473 Bytes
(100%)
...tListView_Tests/test_appearanceCustomization_usingSubclassing.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+658 Bytes
(100%)
...ts/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
+498 Bytes
(100%)
...sts/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
+460 Bytes
(100%)
...mentListView_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
+318 Bytes
(100%)
...dingAttachmentListView_Tests/test_appearance_five_attachments.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+326 Bytes
(100%)
...tListView_Tests/test_appearance_five_attachments.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
+353 Bytes
(100%)
...ntListView_Tests/test_appearance_five_attachments.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
+259 Bytes
(100%)
...cordingAttachmentListView_Tests/test_appearance_five_attachments.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
+72 Bytes
(100%)
...ordingAttachmentListView_Tests/test_appearance_one_attachment.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+98 Bytes
(100%)
...entListView_Tests/test_appearance_one_attachment.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
+38 Bytes
(100%)
...mentListView_Tests/test_appearance_one_attachment.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
+59 Bytes
(100%)
...RecordingAttachmentListView_Tests/test_appearance_one_attachment.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
+108 Bytes
(100%)
...rdingAttachmentListView_Tests/test_appearance_two_attachments.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+114 Bytes
(100%)
...ntListView_Tests/test_appearance_two_attachments.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
+68 Bytes
(100%)
...entListView_Tests/test_appearance_two_attachments.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
+74 Bytes
(100%)
...ecordingAttachmentListView_Tests/test_appearance_two_attachments.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
+63 Bytes
(100%)
...r-bubble-continuousBubble-quotedMessage-reactions-text-threadInfo-timestamp.png
Oops, something went wrong.
Binary file modified
BIN
+30 Bytes
(100%)
...pearance.default-light-avatar-bubble-quotedMessage-reactions-text-timestamp.png
Oops, something went wrong.
Binary file modified
BIN
+30 Bytes
(100%)
...ts/test_appearance.default-light-avatar-bubble-quotedMessage-text-timestamp.png
Oops, something went wrong.
Binary file modified
BIN
+27 Bytes
(100%)
..._Tests/test_appearance.default-light-avatar-bubble-reactions-text-timestamp.png
Oops, something went wrong.
Binary file modified
BIN
+12 Bytes
(100%)
...ontentView_Tests/test_appearance.default-light-avatar-bubble-text-timestamp.png
Oops, something went wrong.
Binary file modified
BIN
+63 Bytes
(100%)
...SizePadding-bubble-continuousBubble-quotedMessage-reactions-text-threadInfo.png
Oops, something went wrong.
Binary file modified
BIN
+12 Bytes
(100%)
...ight-avatarSizePadding-bubble-continuousBubble-quotedMessage-reactions-text.png
Oops, something went wrong.
Binary file modified
BIN
+23 Bytes
(100%)
....default-light-avatarSizePadding-bubble-continuousBubble-quotedMessage-text.png
Oops, something went wrong.
Binary file modified
BIN
+18 Bytes
(100%)
...ance.default-light-avatarSizePadding-bubble-continuousBubble-reactions-text.png
Oops, something went wrong.
Binary file modified
BIN
+16 Bytes
(100%)
...est_appearance.default-light-avatarSizePadding-bubble-continuousBubble-text.png
Oops, something went wrong.
Binary file modified
BIN
+7 Bytes
(100%)
...le-errorIndicator-flipped-quotedMessage-reactions-text-threadInfo-timestamp.png
Oops, something went wrong.
Binary file modified
BIN
+9 Bytes
(100%)
...inuousBubble-errorIndicator-flipped-quotedMessage-reactions-text-threadInfo.png
Oops, something went wrong.
Binary file modified
BIN
+20 Bytes
(100%)
...-continuousBubble-flipped-quotedMessage-reactions-text-threadInfo-timestamp.png
Oops, something went wrong.
Binary file modified
BIN
+14 Bytes
(100%)
...ght-bubble-continuousBubble-flipped-quotedMessage-reactions-text-threadInfo.png
Oops, something went wrong.
Binary file modified
BIN
-13 Bytes
(100%)
....default-light-bubble-continuousBubble-flipped-quotedMessage-reactions-text.png
Oops, something went wrong.
Binary file modified
BIN
-20 Bytes
(100%)
...appearance.default-light-bubble-continuousBubble-flipped-quotedMessage-text.png
Oops, something went wrong.
Binary file modified
BIN
+18 Bytes
(100%)
...est_appearance.default-light-bubble-continuousBubble-flipped-reactions-text.png
Oops, something went wrong.
Binary file modified
BIN
-9 Bytes
(100%)
...ew_Tests/test_appearance.default-light-bubble-continuousBubble-flipped-text.png
Oops, something went wrong.
Binary file modified
BIN
-16 Bytes
(100%)
...earance.default-light-bubble-flipped-quotedMessage-reactions-text-timestamp.png
Oops, something went wrong.
Binary file modified
BIN
-19 Bytes
(100%)
...s/test_appearance.default-light-bubble-flipped-quotedMessage-text-timestamp.png
Oops, something went wrong.
Binary file modified
BIN
-24 Bytes
(100%)
...Tests/test_appearance.default-light-bubble-flipped-reactions-text-timestamp.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
...ntentView_Tests/test_appearance.default-light-bubble-flipped-text-timestamp.png
Oops, something went wrong.
Binary file modified
BIN
-18 Bytes
(100%)
...ntentView_Tests/test_appearanceCustomization_usingSubclassing.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-23 Bytes
(100%)
...ts/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
-13 Bytes
(100%)
...sts/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
-33 Bytes
(99%)
...eContentView_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
-18 Bytes
(100%)
...eContentView_Tests/test_appearanceCustomization_usingUIConfig.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-23 Bytes
(100%)
...Tests/test_appearanceCustomization_usingUIConfig.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
-13 Bytes
(100%)
..._Tests/test_appearanceCustomization_usingUIConfig.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
-33 Bytes
(99%)
...sageContentView_Tests/test_appearanceCustomization_usingUIConfig.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
+21 Bytes
(100%)
..._/ChatMessageContentView_Tests/test_appearanceForErrorMessage.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+31 Bytes
(100%)
...ContentView_Tests/test_appearanceForErrorMessage.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
+21 Bytes
(100%)
...eContentView_Tests/test_appearanceForErrorMessage.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
+20 Bytes
(100%)
...ts__/ChatMessageContentView_Tests/test_appearanceForErrorMessage.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
+21 Bytes
(100%)
.../ChatMessageContentView_Tests/test_appearanceForSystemMessage.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+31 Bytes
(100%)
...ontentView_Tests/test_appearanceForSystemMessage.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
+21 Bytes
(100%)
...ContentView_Tests/test_appearanceForSystemMessage.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
+20 Bytes
(100%)
...s__/ChatMessageContentView_Tests/test_appearanceForSystemMessage.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
+25 Bytes
(100%)
...sts/test_appearance_whenMessageFromTheCurrentUserIsPendingSend.default-dark.png
Oops, something went wrong.
Binary file modified
BIN
+16 Bytes
(100%)
...ts/test_appearance_whenMessageFromTheCurrentUserIsPendingSend.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+28 Bytes
(100%)
...e_whenMessageFromTheCurrentUserIsRead_inDirectMesssagesChannel.default-dark.png
Oops, something went wrong.
Binary file modified
BIN
+44 Bytes
(100%)
..._whenMessageFromTheCurrentUserIsRead_inDirectMesssagesChannel.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-26 Bytes
(100%)
..._appearance_whenMessageFromTheCurrentUserIsRead_inGroupChannel.default-dark.png
Oops, something went wrong.
Binary file modified
BIN
-32 Bytes
(100%)
...appearance_whenMessageFromTheCurrentUserIsRead_inGroupChannel.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(100%)
...View_Tests/test_appearance_whenMessageFromTheCurrentUserIsSent.default-dark.png
Oops, something went wrong.
Binary file modified
BIN
-11 Bytes
(100%)
...iew_Tests/test_appearance_whenMessageFromTheCurrentUserIsSent.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-453 Bytes
(100%)
...hatMessageContentView_Tests/test_appearance_whenMessageHasLink.default-dark.png
Oops, something went wrong.
Binary file modified
BIN
+5 Bytes
(100%)
...atMessageContentView_Tests/test_appearance_whenMessageHasLink.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+137 Bytes
(100%)
...ntentView_Tests/test_appearance_whenMessageHasLinkAndMarkdown.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+9 Bytes
(100%)
...ontentView_Tests/test_appearance_whenMessageHasLinkAndMention.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-247 Bytes
(100%)
...tentView_Tests/test_appearance_whenMessageHasLinkWithoutAuthor.default-dark.png
Oops, something went wrong.
Binary file modified
BIN
-4 Bytes
(100%)
...entView_Tests/test_appearance_whenMessageHasLinkWithoutAuthor.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-689 Bytes
(97%)
...ntentView_Tests/test_appearance_whenMessageHasLinkWithoutImage.default-dark.png
Oops, something went wrong.
Binary file modified
BIN
-60 Bytes
(100%)
...tentView_Tests/test_appearance_whenMessageHasLinkWithoutImage.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-548 Bytes
(97%)
..._Tests/test_appearance_whenMessageHasLinkWithoutImageAndAuthor.default-dark.png
Oops, something went wrong.
Binary file modified
BIN
-54 Bytes
(100%)
...Tests/test_appearance_whenMessageHasLinkWithoutImageAndAuthor.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+14 Bytes
(100%)
...test_appearance_whenMessageHasOnlyOneImage_masksAllTopCorners.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+12 Bytes
(100%)
...s/test_appearance_whenMessageHasTranslation_whenHasAttachment.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
...t_appearance_whenMessageHasTranslation_whenIsSentByCurrentUser.default-dark.png
Oops, something went wrong.
Binary file modified
BIN
-11 Bytes
(100%)
..._appearance_whenMessageHasTranslation_whenIsSentByCurrentUser.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...s/test_appearance_whenMessageHasTranslation_whenNotLastInGroup.default-dark.png
Oops, something went wrong.
Binary file modified
BIN
-7 Bytes
(100%)
.../test_appearance_whenMessageHasTranslation_whenNotLastInGroup.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+5 Bytes
(100%)
..._appearance_whenMessageHasTranslation_whenNotSentByCurrentUser.default-dark.png
Oops, something went wrong.
Binary file modified
BIN
+20 Bytes
(100%)
...appearance_whenMessageHasTranslation_whenNotSentByCurrentUser.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+4 Bytes
(100%)
...MessageContentView_Tests/test_appearance_whenMessageIsBounced.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-13 Bytes
(100%)
...tMessageContentView_Tests/test_appearance_whenMessageIsEdited.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-29 Bytes
(100%)
...ntView_Tests/test_appearance_whenMessageIsEdited.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
+4 Bytes
(100%)
...entView_Tests/test_appearance_whenMessageIsEdited.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
+4 Bytes
(100%)
...ChatMessageContentView_Tests/test_appearance_whenMessageIsEdited.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
-14 Bytes
(100%)
...rance_whenMessageIsEdited_andDeleted_shouldNotShowEditedLabel.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-9 Bytes
(100%)
...View_Tests/test_appearance_whenMessageWithAMentionedUserIsSent.default-dark.png
Oops, something went wrong.
Binary file modified
BIN
+21 Bytes
(100%)
...iew_Tests/test_appearance_whenMessageWithAMentionedUserIsSent.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-59 Bytes
(99%)
...nce_whenMessageWithAMentionedUserIsSent_whenDuplicatedMentions.default-dark.png
Oops, something went wrong.
Binary file modified
BIN
-68 Bytes
(99%)
...ce_whenMessageWithAMentionedUserIsSent_whenDuplicatedMentions.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+22 Bytes
(100%)
...test_appearance_whenMessageWithAMentionedUserIsSent_whenNoName.default-dark.png
Oops, something went wrong.
Binary file modified
BIN
+34 Bytes
(100%)
...est_appearance_whenMessageWithAMentionedUserIsSent_whenNoName.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
...est_appearance_whenMessageWithMarkdownFromTheCurrentUserIsSent.default-dark.png
Oops, something went wrong.
Binary file modified
BIN
+28 Bytes
(100%)
...st_appearance_whenMessageWithMarkdownFromTheCurrentUserIsSent.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-289 Bytes
(99%)
...nce_whenMessageWithMarkdownItalicStyleFromTheCurrentUserIsSent.default-dark.png
Oops, something went wrong.
Binary file modified
BIN
+115 Bytes
(100%)
...ce_whenMessageWithMarkdownItalicStyleFromTheCurrentUserIsSent.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-44 Bytes
(100%)
...nce_whenMessageWithMarkdownOrderedListFromTheCurrentUserIsSent.default-dark.png
Oops, something went wrong.
Binary file modified
BIN
-64 Bytes
(100%)
...ce_whenMessageWithMarkdownOrderedListFromTheCurrentUserIsSent.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+42 Bytes
(100%)
..._whenMessageWithoutMarkdownOrderedListFromTheCurrentUserIsSent.default-dark.png
Oops, something went wrong.
Binary file modified
BIN
-67 Bytes
(99%)
...whenMessageWithoutMarkdownOrderedListFromTheCurrentUserIsSent.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+14 Bytes
(100%)
...tentView_Tests/test_appearance_whenQuoteMessageHasTranslation.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-10 Bytes
(99%)
...rIndicator_Tests/test_appearanceCustomization_usingSubclassing.default-dark.png
Oops, something went wrong.
Binary file modified
BIN
-7 Bytes
(99%)
...Indicator_Tests/test_appearanceCustomization_usingSubclassing.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-55 Bytes
(100%)
...ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+13 Bytes
(100%)
..._Snapshots__/ChatMessageMarkdown_Tests/test_code.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
-56 Bytes
(100%)
...__Snapshots__/ChatMessageMarkdown_Tests/test_code.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
-11 Bytes
(100%)
...st/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
+39 Bytes
(100%)
...sage/__Snapshots__/ChatMessageMarkdown_Tests/test_code_custom.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+119 Bytes
(100%)
...ots__/ChatMessageMarkdown_Tests/test_code_custom.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
+38 Bytes
(100%)
...hots__/ChatMessageMarkdown_Tests/test_code_custom.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
+7 Bytes
(100%)
...Message/__Snapshots__/ChatMessageMarkdown_Tests/test_code_custom.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
+76 Bytes
(100%)
...tMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+66 Bytes
(100%)
...apshots__/ChatMessageMarkdown_Tests/test_headers.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
+83 Bytes
(100%)
...napshots__/ChatMessageMarkdown_Tests/test_headers.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
-208 Bytes
(99%)
...ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
+76 Bytes
(100%)
...ChatMessageMarkdown_Tests/test_headers_appearance_scaled_font.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+66 Bytes
(100%)
...rkdown_Tests/test_headers_appearance_scaled_font.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
+83 Bytes
(100%)
...arkdown_Tests/test_headers_appearance_scaled_font.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
-208 Bytes
(99%)
...__/ChatMessageMarkdown_Tests/test_headers_appearance_scaled_font.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
+71 Bytes
(100%)
...e/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_custom.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+325 Bytes
(100%)
...__/ChatMessageMarkdown_Tests/test_headers_custom.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
+78 Bytes
(100%)
...s__/ChatMessageMarkdown_Tests/test_headers_custom.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
-123 Bytes
(100%)
...sage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_custom.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
-33 Bytes
(100%)
...ts__/ChatMessageMarkdown_Tests/test_inlinePresentationIntents.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-59 Bytes
(100%)
...ageMarkdown_Tests/test_inlinePresentationIntents.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
-33 Bytes
(100%)
...sageMarkdown_Tests/test_inlinePresentationIntents.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
-129 Bytes
(100%)
...shots__/ChatMessageMarkdown_Tests/test_inlinePresentationIntents.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
-83 Bytes
(99%)
...hatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_links.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-72 Bytes
(99%)
...Snapshots__/ChatMessageMarkdown_Tests/test_links.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
-55 Bytes
(99%)
..._Snapshots__/ChatMessageMarkdown_Tests/test_links.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
-41 Bytes
(100%)
...t/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_links.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
+94 Bytes
(100%)
..._Snapshots__/ChatMessageMarkdown_Tests/test_mixedLists_nested.default-light.png
Oops, something went wrong.
Binary file modified
BIN
-71 Bytes
(100%)
...ChatMessageMarkdown_Tests/test_mixedLists_nested.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
+90 Bytes
(100%)
.../ChatMessageMarkdown_Tests/test_mixedLists_nested.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
-19 Bytes
(100%)
...e/__Snapshots__/ChatMessageMarkdown_Tests/test_mixedLists_nested.small-dark.png
Oops, something went wrong.
Binary file modified
BIN
-124 Bytes
(100%)
...MessageMarkdown_Tests/test_orderedList_nested_wrappedTextItem.default-light.png
Oops, something went wrong.
Binary file modified
BIN
+72 Bytes
(100%)
...wn_Tests/test_orderedList_nested_wrappedTextItem.extraExtraExtraLarge-light.png
Oops, something went wrong.
Binary file modified
BIN
-125 Bytes
(100%)
...own_Tests/test_orderedList_nested_wrappedTextItem.rightToLeftLayout-default.png
Oops, something went wrong.
Binary file modified
BIN
-126 Bytes
(100%)
...hatMessageMarkdown_Tests/test_orderedList_nested_wrappedTextItem.small-dark.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.