Skip to content

Commit 2205b92

Browse files
authored
fix: add testiny link against test - WPB-23107 (#4193)
1 parent bebfdfc commit 2205b92

File tree

6 files changed

+17
-0
lines changed

6 files changed

+17
-0
lines changed

fastlane/Fastfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,12 @@ platform :ios do
121121
end
122122
end
123123

124+
desc "List all Testiny test cases"
125+
lane :list_testiny_cases do
126+
UI.message("🔎 Listing Testiny test case references")
127+
sh "cd .. && grep -Rn \"testiny:\" . "
128+
end
129+
124130

125131
desc "Test one framework only"
126132
lane :select_framework do |options|

wire-ios/WireUITests/AccountManagementTests.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ final class AccountManagementTests: WireUITestCase {
2323

2424
var teamMember: UserInfo!
2525

26+
/// testiny: https://app.testiny.io/IOS/testcases/tcf/1287/tc/8588
2627
@MainActor
2728
func test_Account_Management_Lock_With_Passcode() async throws {
2829

@@ -47,6 +48,7 @@ final class AccountManagementTests: WireUITestCase {
4748

4849
}
4950

51+
/// testiny: https://app.testiny.io/IOS/testcases/tcf/1287/tc/8796
5052
@MainActor
5153
func test_Account_Management_Update_Email_Reset_password() async throws {
5254

wire-ios/WireUITests/BackupRestoreHistoryTests.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import XCTest
2121

2222
final class BackupRestoreHistoryTests: WireUITestCase {
2323

24+
/// testiny: https://app.testiny.io/IOS/testcases/tcf/1287/tc/8582
2425
@MainActor
2526
func test_CreateBackupAndRestoreHistory() async throws {
2627
let groupName = UserGenerator.generateRandomGroupName()

wire-ios/WireUITests/MultiBackendSupportTests.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ final class MultiBackendSupportTests: WireUITestCase {
4444
return (accountPage, user)
4545
}
4646

47+
/// testniy: https://app.testiny.io/IOS/testcases/tcf/1287/tc/8797
4748
@MainActor
4849
func test_Add_MultiBackend_Accounts() async throws {
4950

wire-ios/WireUITests/PersonalUserTests.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ import XCTest
2020

2121
final class PersonalUsersTests: WireUITestCase {
2222

23+
/// testiny: https://app.testiny.io/IOS/testcases/tcf/1287/tc/8587
2324
@MainActor
2425
func test_Register_asPersonalUser() async throws {
2526
let user = UserGenerator.generateUniqueUserInfo()
@@ -57,6 +58,7 @@ final class PersonalUsersTests: WireUITestCase {
5758
XCTAssertEqual(accountPage.getEmail(), user.email, "Email didn't contain \(user.email)")
5859
}
5960

61+
/// testiny: https://app.testiny.io/IOS/testcases/tcf/1286/tc/8799
6062
@MainActor
6163
func test_Login_asExistingPersonalUser() async throws {
6264
let user = try await userHelper.createPersonalUser()
@@ -69,6 +71,7 @@ final class PersonalUsersTests: WireUITestCase {
6971
.enterPassword(user.password)
7072
}
7173

74+
/// testiny: https://app.testiny.io/IOS/testcases/tcf/1287/tc/8798
7275
@MainActor
7376
func test_PersonalAccountLifecycle() async throws {
7477
let userA = try await userHelper.createPersonalUser()

wire-ios/WireUITests/TeamManageTests.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import XCTest
2121

2222
final class TeamManageTests: WireUITestCase {
2323

24+
/// testiny: https://app.testiny.io/IOS/testcases/tcf/1299/tc/8625
2425
@MainActor
2526
func test_Migrate_PersonalUserToTeam() async throws {
2627
let user = try await userHelper.createPersonalUser()
@@ -41,6 +42,7 @@ final class TeamManageTests: WireUITestCase {
4142
XCTAssertTrue(userProfilePage.manageTeamButton.exists, "Manage Team button is not visible")
4243
}
4344

45+
/// testiny: https://app.testiny.io/IOS/testcases/tcf/1287/tc/8800
4446
@MainActor
4547
func test_PersonalUser_InvitedToTeam() async throws {
4648
let teamOwner = try await userHelper.createPersonalUser()
@@ -73,6 +75,7 @@ final class TeamManageTests: WireUITestCase {
7375
.enterPassword(memberUser.password)
7476
}
7577

78+
/// testiny: https://app.testiny.io/IOS/testcases/tcf/1287/tc/8579
7679
@MainActor
7780
func test_TeamOwner_GroupCreatedAndSendMessage() async throws {
7881

@@ -102,6 +105,7 @@ final class TeamManageTests: WireUITestCase {
102105
)
103106
}
104107

108+
/// testiny: https://app.testiny.io/IOS/testcases/tcf/1302/tc/8656
105109
@MainActor
106110
func test_GroupAdmin_RemoveAndAddParticipantFromGroup() async throws {
107111

0 commit comments

Comments
 (0)