From cbfc80d88c40f692f9a2d3287951005d628fa247 Mon Sep 17 00:00:00 2001 From: Dmitry Romanov Date: Mon, 20 May 2024 17:37:04 -0400 Subject: [PATCH] [ng] Fix all unit tests --- firebird-ng/src/app/utils/three.utils.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firebird-ng/src/app/utils/three.utils.spec.ts b/firebird-ng/src/app/utils/three.utils.spec.ts index 927c5e7..f25533b 100644 --- a/firebird-ng/src/app/utils/three.utils.spec.ts +++ b/firebird-ng/src/app/utils/three.utils.spec.ts @@ -121,7 +121,7 @@ describe('findObject3DNodes', () => { }); it('should match nodes based on a pattern', () => { - const results = findObject3DNodes(root, 'match'); + const results = findObject3DNodes(root, '**/match'); expect(results.nodes.length).toBe(1); expect(results.nodes[0]).toBe(subchild2); expect(results.fullPaths[0]).toBe('root/child2/match');