@fincity/kirun-js 1.6.12 → 1.6.13

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.
@@ -18,7 +18,7 @@ test('Array to Array of objects', async () => {
18
18
  )
19
19
  .allResults()[0]
20
20
  .getResult()
21
- .get('output');
21
+ .get('result');
22
22
 
23
23
  expect(result).toMatchObject([{ value: 1 }, { value: 2 }, { value: 3 }]);
24
24
 
@@ -37,7 +37,7 @@ test('Array to Array of objects', async () => {
37
37
  )
38
38
  .allResults()[0]
39
39
  .getResult()
40
- .get('output');
40
+ .get('result');
41
41
 
42
42
  expect(result).toMatchObject([{ number: 1 }, { number: 2 }, { number: 3 }]);
43
43
 
@@ -51,7 +51,7 @@ test('Array to Array of objects', async () => {
51
51
  )
52
52
  .allResults()[0]
53
53
  .getResult()
54
- .get('output');
54
+ .get('result');
55
55
 
56
56
  expect(result).toMatchObject([
57
57
  { value: { number: 1 } },
@@ -80,7 +80,7 @@ test('Array to Array of objects', async () => {
80
80
  )
81
81
  .allResults()[0]
82
82
  .getResult()
83
- .get('output');
83
+ .get('result');
84
84
 
85
85
  expect(result).toMatchObject([
86
86
  { value1: 'a', value2: 1 },
@@ -110,7 +110,7 @@ test('Array to Array of objects', async () => {
110
110
  )
111
111
  .allResults()[0]
112
112
  .getResult()
113
- .get('output');
113
+ .get('result');
114
114
 
115
115
  expect(result).toMatchObject([
116
116
  { key: 'a', value: 1 },
@@ -140,7 +140,7 @@ test('Array to Array of objects', async () => {
140
140
  )
141
141
  .allResults()[0]
142
142
  .getResult()
143
- .get('output');
143
+ .get('result');
144
144
 
145
145
  expect(result).toMatchObject([{ maKey: 'a' }, { maKey: 'b' }, { maKey: 'c' }]);
146
146
  });