@fincity/kirun-js 2.3.0 → 2.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -469,4 +469,7 @@ test('index retrieval', () => {
469
469
 
470
470
  ev = new ExpressionEvaluator('Test.c.b[1].__index');
471
471
  expect(ev.evaluate(MapUtil.of(ttv.getPrefix(), ttv))).toBe(1);
472
+
473
+ ev = new ExpressionEvaluator('Test.x.c.__index');
474
+ expect(ev.evaluate(MapUtil.of(ttv.getPrefix(), ttv))).toBe('c');
472
475
  });