@@ -119,7 +119,6 @@ class IntegrationTests: XCTestCase {
119
119
}
120
120
}
121
121
122
- @available ( iOS 13 , tvOS 13 , macOS 10 . 15 , macCatalyst 13 , watchOS 7 , * )
123
122
func testDataAsync( ) async throws {
124
123
let data = DataTestRequest (
125
124
bool: true ,
@@ -174,7 +173,6 @@ class IntegrationTests: XCTestCase {
174
173
}
175
174
}
176
175
177
- @available ( iOS 13 , tvOS 13 , macOS 10 . 15 , macCatalyst 13 , watchOS 7 , * )
178
176
func testScalarAsync( ) async throws {
179
177
let byName = functions. httpsCallable (
180
178
" scalarTest " ,
@@ -193,7 +191,6 @@ class IntegrationTests: XCTestCase {
193
191
}
194
192
}
195
193
196
- @available ( iOS 13 , tvOS 13 , macOS 10 . 15 , macCatalyst 13 , watchOS 7 , * )
197
194
func testScalarAsyncAlternateSignature( ) async throws {
198
195
let byName : Callable < Int16 , Int > = functions. httpsCallable ( " scalarTest " )
199
196
let byURL : Callable < Int16 , Int > = functions. httpsCallable ( emulatorURL ( " scalarTest " ) )
@@ -241,7 +238,6 @@ class IntegrationTests: XCTestCase {
241
238
}
242
239
}
243
240
244
- @available ( iOS 13 , tvOS 13 , macOS 10 . 15 , macCatalyst 13 , watchOS 7 , * )
245
241
func testTokenAsync( ) async throws {
246
242
// Recreate functions with a token.
247
243
let functions = Functions (
@@ -297,7 +293,6 @@ class IntegrationTests: XCTestCase {
297
293
}
298
294
}
299
295
300
- @available ( iOS 13 , tvOS 13 , macOS 10 . 15 , macCatalyst 13 , watchOS 7 , * )
301
296
func testFCMTokenAsync( ) async throws {
302
297
let byName = functions. httpsCallable (
303
298
" FCMTokenTest " ,
@@ -342,7 +337,6 @@ class IntegrationTests: XCTestCase {
342
337
}
343
338
}
344
339
345
- @available ( iOS 13 , tvOS 13 , macOS 10 . 15 , macCatalyst 13 , watchOS 7 , * )
346
340
func testNullAsync( ) async throws {
347
341
let byName = functions. httpsCallable (
348
342
" nullTest " ,
@@ -391,7 +385,6 @@ class IntegrationTests: XCTestCase {
391
385
}
392
386
}
393
387
394
- @available ( iOS 13 , tvOS 13 , macOS 10 . 15 , macCatalyst 13 , watchOS 7 , * )
395
388
func testMissingResultAsync( ) async {
396
389
let byName = functions. httpsCallable (
397
390
" missingResultTest " ,
@@ -445,7 +438,6 @@ class IntegrationTests: XCTestCase {
445
438
}
446
439
}
447
440
448
- @available ( iOS 13 , tvOS 13 , macOS 10 . 15 , macCatalyst 13 , watchOS 7 , * )
449
441
func testUnhandledErrorAsync( ) async {
450
442
let byName = functions. httpsCallable (
451
443
" unhandledErrorTest " ,
@@ -498,7 +490,6 @@ class IntegrationTests: XCTestCase {
498
490
waitForExpectations ( timeout: 5 )
499
491
}
500
492
501
- @available ( iOS 13 , tvOS 13 , macOS 10 . 15 , macCatalyst 13 , watchOS 7 , * )
502
493
func testUnknownErrorAsync( ) async {
503
494
let byName = functions. httpsCallable (
504
495
" unknownErrorTest " ,
@@ -553,7 +544,6 @@ class IntegrationTests: XCTestCase {
553
544
}
554
545
}
555
546
556
- @available ( iOS 13 , tvOS 13 , macOS 10 . 15 , macCatalyst 13 , watchOS 7 , * )
557
547
func testExplicitErrorAsync( ) async {
558
548
let byName = functions. httpsCallable (
559
549
" explicitErrorTest " ,
@@ -608,7 +598,6 @@ class IntegrationTests: XCTestCase {
608
598
}
609
599
}
610
600
611
- @available ( iOS 13 , tvOS 13 , macOS 10 . 15 , macCatalyst 13 , watchOS 7 , * )
612
601
func testHttpErrorAsync( ) async {
613
602
let byName = functions. httpsCallable (
614
603
" httpErrorTest " ,
@@ -661,7 +650,6 @@ class IntegrationTests: XCTestCase {
661
650
}
662
651
}
663
652
664
- @available ( iOS 13 , tvOS 13 , macOS 10 . 15 , macCatalyst 13 , watchOS 7 , * )
665
653
func testThrowErrorAsync( ) async {
666
654
let byName = functions. httpsCallable (
667
655
" throwTest " ,
@@ -716,7 +704,6 @@ class IntegrationTests: XCTestCase {
716
704
}
717
705
}
718
706
719
- @available ( iOS 13 , tvOS 13 , macOS 10 . 15 , macCatalyst 13 , watchOS 7 , * )
720
707
func testTimeoutAsync( ) async {
721
708
var byName = functions. httpsCallable (
722
709
" timeoutTest " ,
@@ -778,7 +765,6 @@ class IntegrationTests: XCTestCase {
778
765
}
779
766
}
780
767
781
- @available ( iOS 13 , tvOS 13 , macOS 10 . 15 , macCatalyst 13 , watchOS 7 , * )
782
768
func testCallAsFunctionAsync( ) async throws {
783
769
let data = DataTestRequest (
784
770
bool: true ,
@@ -841,7 +827,6 @@ class IntegrationTests: XCTestCase {
841
827
}
842
828
}
843
829
844
- @available ( iOS 13 , tvOS 13 , macOS 10 . 15 , macCatalyst 13 , watchOS 7 , * )
845
830
func testInferredTyesAsync( ) async throws {
846
831
let data = DataTestRequest (
847
832
bool: true ,
0 commit comments