|
104 | 104 | // * Receive record with CKAsset from CloudKit |
105 | 105 | // => Stored in database as bytes |
106 | 106 | @available(iOS 17, macOS 14, tvOS 17, watchOS 10, *) |
107 | | - @Test(.disabled()) func receiveData() async throws { |
| 107 | + @Test func receiveData() async throws { |
108 | 108 | let remindersListRecord = CKRecord( |
109 | 109 | recordType: RemindersList.tableName, |
110 | 110 | recordID: RemindersList.recordID(for: 1) |
|
141 | 141 | // * Receive record with Data from CloudKit when local asset exists |
142 | 142 | // => Stored in database as bytes |
143 | 143 | @available(iOS 17, macOS 14, tvOS 17, watchOS 10, *) |
144 | | - @Test(.disabled()) func receiveUpdatedData() async throws { |
| 144 | + @Test func receiveUpdatedData() async throws { |
145 | 145 | try await userDatabase.userWrite { db in |
146 | 146 | try db.seed { |
147 | 147 | RemindersList(id: 1, title: "Personal") |
|
180 | 180 | // * Receive updated asset from CloudKit |
181 | 181 | // => Local database has freshest asset |
182 | 182 | @available(iOS 17, macOS 14, tvOS 17, watchOS 10, *) |
183 | | - @Test(.disabled()) func receiveAssetThenReceiveUpdate() async throws { |
| 183 | + @Test func receiveAssetThenReceiveUpdate() async throws { |
184 | 184 | do { |
185 | 185 | let remindersListRecord = CKRecord( |
186 | 186 | recordType: RemindersList.tableName, |
|
246 | 246 | // * A moment later client receives the parent RemindersList |
247 | 247 | // => Both records (and the image data) should be synchronized |
248 | 248 | @available(iOS 17, macOS 14, tvOS 17, watchOS 10, *) |
249 | | - @Test(.disabled()) func assetReceivedBeforeParentRecord() async throws { |
| 249 | + @Test func assetReceivedBeforeParentRecord() async throws { |
250 | 250 | let remindersListRecord = CKRecord( |
251 | 251 | recordType: RemindersList.tableName, |
252 | 252 | recordID: RemindersList.recordID(for: 1) |
|
0 commit comments