Skip to content

Commit

Permalink
enable for ios but not ios simulator
Browse files Browse the repository at this point in the history
  • Loading branch information
hiroshihorie committed Mar 7, 2024
1 parent ced3467 commit cf88f8d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions Tests/LiveKitTests/PublishTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@
@testable import LiveKit
import XCTest

#if !os(iOS)
// TODO: Make this work with iOS
#if !targetEnvironment(simulator)
// TODO: Make this work with iOS Simulator

class PublishTests: XCTestCase {
let room = Room()

Expand Down
3 changes: 2 additions & 1 deletion Tests/LiveKitTestsObjC/Basic.m
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@
* limitations under the License.
*/

#import <XCTest/XCTest.h>
@import XCTest;
@import LiveKit;

// Simple ObjC test just to ensure ObjC SDK code compiles.
@interface Basic : XCTestCase
@end

Expand Down

0 comments on commit cf88f8d

Please sign in to comment.