diff --git a/packages/dev/core/test/unit/XR/webXRFeaturesManager.test.ts b/packages/dev/core/test/unit/XR/webXRFeaturesManager.test.ts index 15de16dd848..4087ec810b3 100644 --- a/packages/dev/core/test/unit/XR/webXRFeaturesManager.test.ts +++ b/packages/dev/core/test/unit/XR/webXRFeaturesManager.test.ts @@ -54,7 +54,10 @@ describe("Babylon WebXR Features Manager", function () { */ describe("Conflicting Features cannot be enabled simultaneously", () => { it("Cannot enable Movement feature while Teleportation feature is enabled", () => { - const teleportationFeature = subject.enableFeature(WebXRMotionControllerTeleportation.Name, undefined, { xrInput: { xrCamera: {} } }); + const teleportationFeature = subject.enableFeature(WebXRMotionControllerTeleportation.Name, undefined, { + xrInput: { xrCamera: {} }, + defaultTargetMeshOptions: { teleportationCircleMaterial: {} }, + }); expect(teleportationFeature).toBeDefined(); expect(subject.getEnabledFeatures()).toStrictEqual([WebXRMotionControllerTeleportation.Name]);