Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 58 additions & 3 deletions .github/workflows/cron-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
fastlane/test_output/logs/*/Diagnostics/**/*.txt
fastlane/test_output/logs/*/Diagnostics/simctl_diagnostics/DiagnosticReports/*

build-and-test-debug:
build-and-test-llc-debug:
name: Test LLC (Debug)
strategy:
matrix:
Expand Down Expand Up @@ -137,8 +137,61 @@ jobs:
fastlane/test_output/logs/*/Diagnostics/**/*.txt
fastlane/test_output/logs/*/Diagnostics/simctl_diagnostics/DiagnosticReports/*

build-and-test-common-ui-debug:
name: Test CommonUI (Debug)
strategy:
matrix:
include:
- ios: "26.1"
device: "iPhone 17 Pro"
setup_runtime: false
- ios: "18.5"
device: "iPhone 16 Pro"
setup_runtime: false
- ios: "17.5"
device: "iPhone 15 Pro"
setup_runtime: true
- ios: "16.4"
device: "iPhone 14 Pro"
setup_runtime: true
- ios: "15.5"
device: "iPhone 13 Pro"
setup_runtime: true
fail-fast: false
runs-on: macos-15
env:
XCODE_VERSION: "26.1.1"
IOS_SIMULATOR_DEVICE: "${{ matrix.device }} (${{ matrix.ios }})"
steps:
- uses: actions/checkout@v4.1.1
- uses: ./.github/actions/bootstrap
env:
INSTALL_YEETD: true
INSTALL_IPSW: true
- uses: ./.github/actions/setup-ios-runtime
if: ${{ matrix.setup_runtime }}
timeout-minutes: 60
with:
version: ${{ matrix.ios }}
device: ${{ matrix.device }}
- name: Run Common UI Tests (Debug)
run: bundle exec fastlane test_common_ui device:"${{ env.IOS_SIMULATOR_DEVICE }}" cron:true
timeout-minutes: 100
- name: Parse xcresult
if: failure()
run: |
brew install chargepoint/xcparse/xcparse
xcparse logs fastlane/test_output/StreamChatCommonUI.xcresult fastlane/test_output/logs/
- uses: actions/upload-artifact@v4
if: failure()
with:
name: Test Data Common UI (iOS ${{ matrix.ios }})
path: |
fastlane/test_output/logs/*/Diagnostics/**/*.txt
fastlane/test_output/logs/*/Diagnostics/simctl_diagnostics/DiagnosticReports/*

build-old-xcode:
name: Build LLC + UI (Old Xcode)
name: Build SDKs (Old Xcode)
runs-on: macos-14
env:
XCODE_VERSION: "16.1"
Expand All @@ -157,6 +210,8 @@ jobs:
timeout-minutes: 25
- name: Build UI
run: bundle exec fastlane test_ui device:"iPhone 16" build_for_testing:true
- name: Build Common UI
run: bundle exec fastlane test_common_ui device:"iPhone 16" build_for_testing:true
timeout-minutes: 25
- name: Build XCFrameworks
run: bundle exec fastlane build_xcframeworks
Expand All @@ -179,7 +234,7 @@ jobs:
slack:
name: Slack Report
runs-on: ubuntu-latest
needs: [build-and-test-debug, test-e2e-debug, build-old-xcode, automated-code-review]
needs: [build-and-test-llc-debug, build-and-test-common-ui-debug, test-e2e-debug, build-old-xcode, automated-code-review]
if: failure() && github.event_name == 'schedule'
steps:
- uses: 8398a7/action-slack@v3
Expand Down
34 changes: 34 additions & 0 deletions .github/workflows/smoke-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ jobs:
- name: Build UI
run: bundle exec fastlane test_ui device:"iPhone 16" build_for_testing:true
timeout-minutes: 25
- name: Build Common UI
run: bundle exec fastlane test_common_ui device:"iPhone 16" build_for_testing:true
timeout-minutes: 25

test-llc-debug:
name: Test LLC (Debug)
Expand Down Expand Up @@ -150,6 +153,37 @@ jobs:
path: |
fastlane/test_output/snapshots


test-common-ui-debug:
name: Test Common UI (Debug)
runs-on: macos-15
needs: build-test-app-and-frameworks
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/download-artifact@v4
with:
name: cache-derived-data
path: derived_data/Build/
- uses: ./.github/actions/bootstrap
env:
INSTALL_YEETD: true
SKIP_SWIFT_BOOTSTRAP: true
- name: Run Common UI Tests (Debug)
run: bundle exec fastlane test_common_ui device:"${{ env.IOS_SIMULATOR_DEVICE }}" skip_build:true
timeout-minutes: 60
- name: Parse xcresult
if: failure()
run: |
brew install chargepoint/xcparse/xcparse
xcparse logs fastlane/test_output/StreamChatCommonUI.xcresult fastlane/test_output/logs/
- uses: actions/upload-artifact@v4
if: failure()
with:
name: Test Data Common UI
path: |
fastlane/test_output/logs/*/Diagnostics/**/*.txt
fastlane/test_output/logs/*/Diagnostics/simctl_diagnostics/DiagnosticReports/*

allure_testops_launch:
name: Launch Allure TestOps
runs-on: macos-15
Expand Down
32 changes: 23 additions & 9 deletions StreamChat.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@
7908820625432B7200896F03 /* StreamChatUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 790881FD25432B7200896F03 /* StreamChatUI.framework */; };
7908823325432C6400896F03 /* StreamChatUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 7908823125432C6400896F03 /* StreamChatUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
7908824A25432CC600896F03 /* StreamChatStressTestPlan.xctestplan in Resources */ = {isa = PBXBuildFile; fileRef = 7908824725432CC600896F03 /* StreamChatStressTestPlan.xctestplan */; };
7908824B25432CC600896F03 /* StreamChatTestPlan.xctestplan in Resources */ = {isa = PBXBuildFile; fileRef = 7908824825432CC600896F03 /* StreamChatTestPlan.xctestplan */; };
7908824B25432CC600896F03 /* StreamChat.xctestplan in Resources */ = {isa = PBXBuildFile; fileRef = 7908824825432CC600896F03 /* StreamChat.xctestplan */; };
7908829C2546D95A00896F03 /* FlagMessagePayload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7908829A2546D95A00896F03 /* FlagMessagePayload.swift */; };
790882A22546D95F00896F03 /* FlagMessagePayload_Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7908829B2546D95A00896F03 /* FlagMessagePayload_Tests.swift */; };
790882DF25486B6800896F03 /* ChatChannelListVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = 790882BF25486ADB00896F03 /* ChatChannelListVC.swift */; };
Expand Down Expand Up @@ -672,6 +672,9 @@
829CD5C52848C2EA003C3877 /* ParticipantRobot.swift in Sources */ = {isa = PBXBuildFile; fileRef = 829CD5C32848C25F003C3877 /* ParticipantRobot.swift */; };
829CD5C72848C71B003C3877 /* Settings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 829CD5C62848C71B003C3877 /* Settings.swift */; };
829CD5CC2848C8D6003C3877 /* BackendRobot.swift in Sources */ = {isa = PBXBuildFile; fileRef = 829CD5CB2848C8D6003C3877 /* BackendRobot.swift */; };
82A5F45A2F0FDA2600D88FC4 /* StreamSwiftTestHelpers in Frameworks */ = {isa = PBXBuildFile; productRef = 82A5F4592F0FDA2600D88FC4 /* StreamSwiftTestHelpers */; };
82A5F45B2F0FDA2600D88FC4 /* StreamChatTestTools.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 793060E625778896005CF846 /* StreamChatTestTools.framework */; };
82A5F45C2F0FDB1100D88FC4 /* StreamChatUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 790881FD25432B7200896F03 /* StreamChatUI.framework */; platformFilter = ios; };
82A6F5C027E2031000F4A2F6 /* Reactions_Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82A6F5BF27E2031000F4A2F6 /* Reactions_Tests.swift */; };
82BA52EF27E1EF7B00951B87 /* MessageList_Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82BA52EE27E1EF7B00951B87 /* MessageList_Tests.swift */; };
82BE0ACD2C009A17008DA9DC /* BlockedUserDetails.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82BE0ACC2C009A17008DA9DC /* BlockedUserDetails.swift */; };
Expand Down Expand Up @@ -3314,7 +3317,7 @@
7908823125432C6400896F03 /* StreamChatUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StreamChatUI.h; sourceTree = "<group>"; };
7908823225432C6400896F03 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
7908824725432CC600896F03 /* StreamChatStressTestPlan.xctestplan */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = StreamChatStressTestPlan.xctestplan; sourceTree = "<group>"; };
7908824825432CC600896F03 /* StreamChatTestPlan.xctestplan */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = StreamChatTestPlan.xctestplan; sourceTree = "<group>"; };
7908824825432CC600896F03 /* StreamChat.xctestplan */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = StreamChat.xctestplan; sourceTree = "<group>"; };
7908824925432CC600896F03 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
7908829A2546D95A00896F03 /* FlagMessagePayload.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FlagMessagePayload.swift; sourceTree = "<group>"; };
7908829B2546D95A00896F03 /* FlagMessagePayload_Tests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FlagMessagePayload_Tests.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -3538,6 +3541,7 @@
829CD5C32848C25F003C3877 /* ParticipantRobot.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ParticipantRobot.swift; sourceTree = "<group>"; };
829CD5C62848C71B003C3877 /* Settings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Settings.swift; sourceTree = "<group>"; };
829CD5CB2848C8D6003C3877 /* BackendRobot.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BackendRobot.swift; sourceTree = "<group>"; };
82A5F4582F0FC2C200D88FC4 /* StreamChatCommonUI.xctestplan */ = {isa = PBXFileReference; lastKnownFileType = text; path = StreamChatCommonUI.xctestplan; sourceTree = "<group>"; };
82A6F5BF27E2031000F4A2F6 /* Reactions_Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Reactions_Tests.swift; sourceTree = "<group>"; };
82AA16CF28A400F8009816CD /* StreamChatFlakyTests.xctestplan */ = {isa = PBXFileReference; lastKnownFileType = text; path = StreamChatFlakyTests.xctestplan; sourceTree = "<group>"; };
82AD02BC27D8E44B000611B7 /* StreamTestCase.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StreamTestCase.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -4079,7 +4083,7 @@
ACF73D7726CFE07900372DC0 /* Cancellable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Cancellable.swift; sourceTree = "<group>"; };
AD0169CA25CAEDC0009EBAD2 /* yoda.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = yoda.jpg; sourceTree = "<group>"; };
AD0169F325CAF689009EBAD2 /* vader.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = vader.jpg; sourceTree = "<group>"; };
AD016A3325CB0AE6009EBAD2 /* StreamChatUITestPlan.xctestplan */ = {isa = PBXFileReference; lastKnownFileType = text; path = StreamChatUITestPlan.xctestplan; sourceTree = "<group>"; };
AD016A3325CB0AE6009EBAD2 /* StreamChatUI.xctestplan */ = {isa = PBXFileReference; lastKnownFileType = text; path = StreamChatUI.xctestplan; sourceTree = "<group>"; };
AD050B8C265D5E09006649A5 /* QuotedChatMessageView+SwiftUI.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "QuotedChatMessageView+SwiftUI.swift"; sourceTree = "<group>"; };
AD050BA7265D600B006649A5 /* QuotedChatMessageView+SwiftUI_Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "QuotedChatMessageView+SwiftUI_Tests.swift"; sourceTree = "<group>"; };
AD053B992B335854003612B6 /* DemoComposerVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DemoComposerVC.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -4941,7 +4945,10 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
82A5F45C2F0FDB1100D88FC4 /* StreamChatUI.framework in Frameworks */,
82A5F45B2F0FDA2600D88FC4 /* StreamChatTestTools.framework in Frameworks */,
AD5D7BC82EFA26FF004A63E2 /* StreamChatCommonUI.framework in Frameworks */,
82A5F45A2F0FDA2600D88FC4 /* StreamSwiftTestHelpers in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -5510,7 +5517,7 @@
BDDD1E952632C4C900BA007B /* Components+SwiftUI_Tests.swift */,
64B75AFF2631700500A466D1 /* ChatMessage_Tests.swift */,
7849AF9225F2479A007817D4 /* UITestsEnvironmentSetup.swift */,
AD016A3325CB0AE6009EBAD2 /* StreamChatUITestPlan.xctestplan */,
AD016A3325CB0AE6009EBAD2 /* StreamChatUI.xctestplan */,
A3D9D68A27EDE53600725066 /* Extensions */,
A3D9D68D27EDE5AD00725066 /* Helpers */,
A3D9D69227EDE85A00725066 /* Mocks */,
Expand All @@ -5535,7 +5542,7 @@
A382131D2805C8AC0068D30E /* TestsEnvironmentSetup.swift */,
7908824725432CC600896F03 /* StreamChatStressTestPlan.xctestplan */,
82AA16CF28A400F8009816CD /* StreamChatFlakyTests.xctestplan */,
7908824825432CC600896F03 /* StreamChatTestPlan.xctestplan */,
7908824825432CC600896F03 /* StreamChat.xctestplan */,
A364D09127D0BECE0029857A /* APIClient */,
A364D08B27D0BD650029857A /* Config */,
A364D0A527D127E00029857A /* Controllers */,
Expand Down Expand Up @@ -8618,6 +8625,7 @@
BDDD1EAB2632E32000BA007B /* AppearanceProvider_Tests.swift */,
BDDD1EAD2632E6C200BA007B /* Appearance+SwiftUI_Tests.swift */,
E7D68C4C26B1AAB500FCF3B8 /* Localization_Tests.swift */,
82A5F4582F0FC2C200D88FC4 /* StreamChatCommonUI.xctestplan */,
AD5D7BD02EFA27BB004A63E2 /* Formatters */,
AD5D7BD12EFA27DA004A63E2 /* Utils */,
);
Expand Down Expand Up @@ -9961,6 +9969,7 @@
);
name = StreamChatCommonUITests;
packageProductDependencies = (
82A5F4592F0FDA2600D88FC4 /* StreamSwiftTestHelpers */,
);
productName = StreamChatCommonUITests;
productReference = AD5D7BC42EFA26FF004A63E2 /* StreamChatCommonUITests.xctest */;
Expand Down Expand Up @@ -10398,7 +10407,7 @@
buildActionMask = 2147483647;
files = (
7908824A25432CC600896F03 /* StreamChatStressTestPlan.xctestplan in Resources */,
7908824B25432CC600896F03 /* StreamChatTestPlan.xctestplan in Resources */,
7908824B25432CC600896F03 /* StreamChat.xctestplan in Resources */,
4042967A29FAC7770089126D /* test_audio_file.m4a in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
Expand Down Expand Up @@ -14796,7 +14805,7 @@
GCC_C_LANGUAGE_STANDARD = gnu17;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = Tests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 26.0;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = io.getstream.StreamChatCommonUITests;
Expand All @@ -14823,7 +14832,7 @@
GCC_C_LANGUAGE_STANDARD = gnu17;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = Tests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 26.0;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = io.getstream.StreamChatCommonUITests;
Expand All @@ -14849,7 +14858,7 @@
GCC_C_LANGUAGE_STANDARD = gnu17;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = Tests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 26.0;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = io.getstream.StreamChatCommonUITests;
Expand Down Expand Up @@ -15543,6 +15552,11 @@
package = A3D15D8C27E9D839006B34D7 /* XCRemoteSwiftPackageReference "stream-chat-swift-test-helpers" */;
productName = StreamSwiftTestHelpers;
};
82A5F4592F0FDA2600D88FC4 /* StreamSwiftTestHelpers */ = {
isa = XCSwiftPackageProductDependency;
package = A3D15D8C27E9D839006B34D7 /* XCRemoteSwiftPackageReference "stream-chat-swift-test-helpers" */;
productName = StreamSwiftTestHelpers;
};
82F714AA2B078AE800442A74 /* StreamSwiftTestHelpers */ = {
isa = XCSwiftPackageProductDependency;
package = A3D15D8C27E9D839006B34D7 /* XCRemoteSwiftPackageReference "stream-chat-swift-test-helpers" */;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
shouldUseLaunchSchemeArgsEnv = "YES">
<TestPlans>
<TestPlanReference
reference = "container:Tests/StreamChatTests/StreamChatTestPlan.xctestplan"
reference = "container:Tests/StreamChatTests/StreamChat.xctestplan"
default = "YES">
</TestPlanReference>
<TestPlanReference
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "2610"
version = "1.7">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES"
buildArchitectures = "Automatic">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "AD4C2B0B2EF1BF58000E4FC1"
BuildableName = "StreamChatCommonUI.framework"
BlueprintName = "StreamChatCommonUI"
ReferencedContainer = "container:StreamChat.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES">
<TestPlans>
<TestPlanReference
reference = "container:Tests/StreamChatCommonUITests/StreamChatCommonUI.xctestplan"
default = "YES">
</TestPlanReference>
</TestPlans>
<Testables>
<TestableReference
skipped = "NO"
parallelizable = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "AD5D7BC32EFA26FF004A63E2"
BuildableName = "StreamChatCommonUITests.xctest"
BlueprintName = "StreamChatCommonUITests"
ReferencedContainer = "container:StreamChat.xcodeproj">
</BuildableReference>
</TestableReference>
</Testables>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
</LaunchAction>
<ProfileAction
buildConfiguration = "Release"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "AD4C2B0B2EF1BF58000E4FC1"
BuildableName = "StreamChatCommonUI.framework"
BlueprintName = "StreamChatCommonUI"
ReferencedContainer = "container:StreamChat.xcodeproj">
</BuildableReference>
</MacroExpansion>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
shouldUseLaunchSchemeArgsEnv = "YES">
<TestPlans>
<TestPlanReference
reference = "container:Tests/StreamChatTests/StreamChatTestPlan.xctestplan"
reference = "container:Tests/StreamChatTests/StreamChat.xctestplan"
default = "YES">
</TestPlanReference>
<TestPlanReference
Expand Down
Loading
Loading