Skip to content

Commit

Permalink
removed animation tests for now. the animations don't complete during…
Browse files Browse the repository at this point in the history
… tests as they do in an actual app, likely due to scenes not being loaded or displayed in tests
  • Loading branch information
maxxfrazer committed Nov 14, 2023
1 parent ed00103 commit e8d6ec8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Tests/RealityUITests/RUIAnimationTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import XCTest
import RealityKit
@testable import RealityUI

/*
#if os(iOS)
final class RUIAnimationTests: XCTestCase {

Expand All @@ -21,7 +22,7 @@ final class RUIAnimationTests: XCTestCase {
arView = ARView(frame: .init(origin: .zero, size: CGSize(width: 256, height: 256)))
viewC.view.addSubview(arView)
entity = Entity()
let anchor = AnchorEntity()
let anchor = AnchorEntity(world: .zero)
let cam = PerspectiveCamera()
cam.look(at: .zero, from: [0, 1, 1], relativeTo: nil)
anchor.addChild(cam)
Expand Down Expand Up @@ -73,3 +74,4 @@ final class RUIAnimationTests: XCTestCase {

}
#endif
*/

0 comments on commit e8d6ec8

Please sign in to comment.