orchid-orm-test-factory 0.2.35 → 0.2.37

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orchid-orm-test-factory",
3
- "version": "0.2.35",
3
+ "version": "0.2.37",
4
4
  "description": "Orchid ORM factories for tests",
5
5
  "homepage": "https://orchid-orm.netlify.app/guide/orm-test-factories.html",
6
6
  "repository": {
@@ -17,14 +17,17 @@
17
17
  "types": "./dist/index.d.ts"
18
18
  }
19
19
  },
20
+ "files": [
21
+ "dist"
22
+ ],
20
23
  "jest": {
24
+ "rootDir": "src",
21
25
  "setupFiles": [
22
26
  "dotenv/config"
23
27
  ],
24
- "globalSetup": "../../jest-global-setup.ts",
28
+ "globalSetup": "../../../jest-global-setup.ts",
25
29
  "setupFilesAfterEnv": [
26
- "../../jest-setup.ts",
27
- "./jest-setup.ts"
30
+ "../../../jest-setup.ts"
28
31
  ],
29
32
  "transform": {
30
33
  "^.+\\.ts$": "@swc/jest"
@@ -40,32 +43,16 @@
40
43
  "dependencies": {
41
44
  "@anatine/zod-mock": "^3.6.0",
42
45
  "@faker-js/faker": "^7.6.0",
43
- "orchid-orm": "1.5.29",
44
- "orchid-orm-schema-to-zod": "0.2.23",
45
- "pqb": "0.9.17",
46
+ "orchid-orm": "1.5.31",
47
+ "orchid-orm-schema-to-zod": "0.2.25",
48
+ "pqb": "0.9.19",
46
49
  "zod": "^3.19.1"
47
50
  },
48
- "devDependencies": {
49
- "@swc/core": "^1.2.210",
50
- "@swc/jest": "^0.2.21",
51
- "@types/jest": "^28.1.2",
52
- "@types/node": "^18.0.1",
53
- "@types/pg": "^8.6.5",
54
- "dotenv": "^16.0.1",
55
- "jest": "^28.1.2",
56
- "pg": "^8.8.0",
57
- "pg-transactional-tests": "^1.0.7",
58
- "rimraf": "^3.0.2",
59
- "rollup": "^2.79.0",
60
- "rollup-plugin-dts": "^4.2.2",
61
- "rollup-plugin-esbuild": "^4.10.1",
62
- "tslib": "^2.4.0",
63
- "typescript": "^4.7.4"
64
- },
65
51
  "scripts": {
66
52
  "test": "jest --watch --verbose false",
67
53
  "check": "jest",
54
+ "types": "tsc",
68
55
  "test:ci": "jest --coverage --coverageReporters json-summary",
69
- "build": "rimraf ./dist/ && rollup -c --rollup.config"
56
+ "build": "rimraf ./dist/ && rollup -c ../../rollup.config"
70
57
  }
71
58
  }
@@ -1,53 +0,0 @@
1
-
2
- > orchid-orm-test-factory@0.2.34 check /home/romeo/dev/my/orchid-orm/packages/test-factory
3
- > jest
4
-
5
- PASS src/factory.test.ts (9.936 s)
6
- factory
7
- sequence and sequenceDistance
8
- ✓ should depend on process.env.JEST_WORKER_ID when it is defined (3 ms)
9
- ✓ should allow to override sequence (1 ms)
10
- ✓ should allow to override sequence distance (1 ms)
11
- build
12
- ✓ should build an object for the table (14 ms)
13
- ✓ should accept data with values to override result (4 ms)
14
- ✓ should accept data with functions to override result (2 ms)
15
- ✓ should limit long strings with 1000 by default (3 ms)
16
- ✓ should respect max which is set on column (2 ms)
17
- ✓ should allow to override maxTextLength (3 ms)
18
- omit
19
- ✓ should allow to build data with omitted fields (4 ms)
20
- pick
21
- ✓ should allow to build data with picked fields (1 ms)
22
- create
23
- ✓ should create record with generated data, except serial primary keys, datetime numbers should be the same in the record and to be around now (30 ms)
24
- ✓ should create record with overridden data (5 ms)
25
- ✓ should create record with nested create (7 ms)
26
- createList
27
- ✓ should create a list of records, datetime numbers should be the same in one record and increase for each next record (6 ms)
28
- ✓ should create a list of records with overridden data (4 ms)
29
- set
30
- ✓ should set data to override result and work with build (2 ms)
31
- ✓ should set data to override result and work with buildList (3 ms)
32
- ✓ should set data to override result and work with create (6 ms)
33
- ✓ should set data to override result and work with createList (5 ms)
34
- custom methods
35
- ✓ should respect omitted fields and build a proper object (3 ms)
36
- ✓ should respect picked fields and build a proper object
37
- unique columns
38
- ✓ should prefix unique text column with sequence and space
39
- ✓ should prefix unique email with sequence and dash (1 ms)
40
- ✓ should prefix unique url with sequence and dash (1 ms)
41
- ✓ should set value no longer than max
42
- ✓ should set value with correct length when length option is set (1 ms)
43
- ✓ should use sequence for a number for unique numeric column
44
- ✓ should support gt option for unique numeric column (1 ms)
45
- ✓ should support gt option for unique numeric column (1 ms)
46
- ✓ should leave explicitly set values as is
47
- ✓ should work in buildList (1 ms)
48
-
49
- Test Suites: 1 passed, 1 total
50
- Tests: 32 passed, 32 total
51
- Snapshots: 0 total
52
- Time: 9.984 s, estimated 10 s
53
- Ran all test suites.
@@ -1,53 +0,0 @@
1
-
2
- > orchid-orm-test-factory@0.2.29 test /home/romeo/dev/my/orchid-orm/packages/test-factory
3
- > jest "--coverage" "--coverageReporters" "json-summary"
4
-
5
- PASS src/factory.test.ts
6
- factory
7
- sequence and sequenceDistance
8
- ✓ should depend on process.env.JEST_WORKER_ID when it is defined (2 ms)
9
- ✓ should allow to override sequence (1 ms)
10
- ✓ should allow to override sequence distance
11
- build
12
- ✓ should build an object for the table (8 ms)
13
- ✓ should accept data with values to override result (3 ms)
14
- ✓ should accept data with functions to override result (2 ms)
15
- ✓ should limit long strings with 1000 by default (2 ms)
16
- ✓ should respect max which is set on column (1 ms)
17
- ✓ should allow to override maxTextLength (1 ms)
18
- omit
19
- ✓ should allow to build data with omitted fields (1 ms)
20
- pick
21
- ✓ should allow to build data with picked fields (1 ms)
22
- create
23
- ✓ should create record with generated data, except serial primary keys, datetime numbers should be the same in the record and to be around now (18 ms)
24
- ✓ should create record with overridden data (2 ms)
25
- ✓ should create record with nested create (4 ms)
26
- createList
27
- ✓ should create a list of records, datetime numbers should be the same in one record and increase for each next record (4 ms)
28
- ✓ should create a list of records with overridden data (3 ms)
29
- set
30
- ✓ should set data to override result and work with build (2 ms)
31
- ✓ should set data to override result and work with buildList (1 ms)
32
- ✓ should set data to override result and work with create (5 ms)
33
- ✓ should set data to override result and work with createList (6 ms)
34
- custom methods
35
- ✓ should respect omitted fields and build a proper object (2 ms)
36
- ✓ should respect picked fields and build a proper object
37
- unique columns
38
- ✓ should prefix unique text column with sequence and space (1 ms)
39
- ✓ should prefix unique email with sequence and dash (1 ms)
40
- ✓ should prefix unique url with sequence and dash (1 ms)
41
- ✓ should set value no longer than max
42
- ✓ should set value with correct length when length option is set (1 ms)
43
- ✓ should use sequence for a number for unique numeric column (1 ms)
44
- ✓ should support gt option for unique numeric column
45
- ✓ should support gt option for unique numeric column (1 ms)
46
- ✓ should leave explicitly set values as is
47
- ✓ should work in buildList
48
-
49
- Test Suites: 1 passed, 1 total
50
- Tests: 32 passed, 32 total
51
- Snapshots: 0 total
52
- Time: 4.791 s, estimated 5 s
53
- Ran all test suites.
@@ -1,53 +0,0 @@
1
-
2
- > orchid-orm-test-factory@0.2.30 test:ci /home/romeo/dev/my/orchid-orm/packages/test-factory
3
- > jest --coverage --coverageReporters json-summary
4
-
5
- PASS src/factory.test.ts (9.103 s)
6
- factory
7
- sequence and sequenceDistance
8
- ✓ should depend on process.env.JEST_WORKER_ID when it is defined (3 ms)
9
- ✓ should allow to override sequence (1 ms)
10
- ✓ should allow to override sequence distance (1 ms)
11
- build
12
- ✓ should build an object for the table (45 ms)
13
- ✓ should accept data with values to override result (23 ms)
14
- ✓ should accept data with functions to override result (19 ms)
15
- ✓ should limit long strings with 1000 by default (2 ms)
16
- ✓ should respect max which is set on column (2 ms)
17
- ✓ should allow to override maxTextLength (2 ms)
18
- omit
19
- ✓ should allow to build data with omitted fields (11 ms)
20
- pick
21
- ✓ should allow to build data with picked fields (1 ms)
22
- create
23
- ✓ should create record with generated data, except serial primary keys, datetime numbers should be the same in the record and to be around now (70 ms)
24
- ✓ should create record with overridden data (21 ms)
25
- ✓ should create record with nested create (20 ms)
26
- createList
27
- ✓ should create a list of records, datetime numbers should be the same in one record and increase for each next record (19 ms)
28
- ✓ should create a list of records with overridden data (21 ms)
29
- set
30
- ✓ should set data to override result and work with build (10 ms)
31
- ✓ should set data to override result and work with buildList (4 ms)
32
- ✓ should set data to override result and work with create (23 ms)
33
- ✓ should set data to override result and work with createList (7 ms)
34
- custom methods
35
- ✓ should respect omitted fields and build a proper object (2 ms)
36
- ✓ should respect picked fields and build a proper object
37
- unique columns
38
- ✓ should prefix unique text column with sequence and space (1 ms)
39
- ✓ should prefix unique email with sequence and dash (1 ms)
40
- ✓ should prefix unique url with sequence and dash (2 ms)
41
- ✓ should set value no longer than max
42
- ✓ should set value with correct length when length option is set
43
- ✓ should use sequence for a number for unique numeric column (14 ms)
44
- ✓ should support gt option for unique numeric column
45
- ✓ should support gt option for unique numeric column (1 ms)
46
- ✓ should leave explicitly set values as is (1 ms)
47
- ✓ should work in buildList (1 ms)
48
-
49
- Test Suites: 1 passed, 1 total
50
- Tests: 32 passed, 32 total
51
- Snapshots: 0 total
52
- Time: 9.281 s
53
- Ran all test suites.
package/CHANGELOG.md DELETED
@@ -1,465 +0,0 @@
1
- # orchid-orm-test-factory
2
-
3
- ## 0.2.35
4
-
5
- ### Patch Changes
6
-
7
- - Updated dependencies
8
- - pqb@0.9.17
9
- - orchid-orm@1.5.29
10
- - orchid-orm-schema-to-zod@0.2.23
11
-
12
- ## 0.2.34
13
-
14
- ### Patch Changes
15
-
16
- - Updated dependencies
17
- - pqb@0.9.16
18
- - orchid-orm@1.5.28
19
- - orchid-orm-schema-to-zod@0.2.22
20
-
21
- ## 0.2.33
22
-
23
- ### Patch Changes
24
-
25
- - Updated dependencies
26
- - pqb@0.9.15
27
- - orchid-orm@1.5.27
28
- - orchid-orm-schema-to-zod@0.2.21
29
-
30
- ## 0.2.32
31
-
32
- ### Patch Changes
33
-
34
- - Updated dependencies
35
- - pqb@0.9.14
36
- - orchid-orm@1.5.26
37
- - orchid-orm-schema-to-zod@0.2.20
38
-
39
- ## 0.2.31
40
-
41
- ### Patch Changes
42
-
43
- - Updated dependencies
44
- - orchid-orm@1.5.25
45
-
46
- ## 0.2.30
47
-
48
- ### Patch Changes
49
-
50
- - Updated dependencies
51
- - pqb@0.9.13
52
- - orchid-orm@1.5.24
53
- - orchid-orm-schema-to-zod@0.2.19
54
-
55
- ## 0.2.29
56
-
57
- ### Patch Changes
58
-
59
- - Updated dependencies
60
- - orchid-orm@1.5.23
61
-
62
- ## 0.2.28
63
-
64
- ### Patch Changes
65
-
66
- - Updated dependencies
67
- - orchid-orm@1.5.22
68
-
69
- ## 0.2.27
70
-
71
- ### Patch Changes
72
-
73
- - Updated dependencies
74
- - orchid-orm@1.5.21
75
-
76
- ## 0.2.26
77
-
78
- ### Patch Changes
79
-
80
- - Updated dependencies
81
- - orchid-orm@1.5.20
82
-
83
- ## 0.2.25
84
-
85
- ### Patch Changes
86
-
87
- - Updated dependencies
88
- - orchid-orm@1.5.19
89
-
90
- ## 0.2.24
91
-
92
- ### Patch Changes
93
-
94
- - Updated dependencies
95
- - orchid-orm@1.5.18
96
- - pqb@0.9.12
97
- - orchid-orm-schema-to-zod@0.2.18
98
-
99
- ## 0.2.23
100
-
101
- ### Patch Changes
102
-
103
- - Updated dependencies
104
- - orchid-orm@1.5.17
105
- - pqb@0.9.11
106
- - orchid-orm-schema-to-zod@0.2.17
107
-
108
- ## 0.2.22
109
-
110
- ### Patch Changes
111
-
112
- - Updated dependencies
113
- - orchid-orm@1.5.16
114
-
115
- ## 0.2.21
116
-
117
- ### Patch Changes
118
-
119
- - Updated dependencies
120
- - orchid-orm@1.5.15
121
-
122
- ## 0.2.20
123
-
124
- ### Patch Changes
125
-
126
- - Updated dependencies
127
- - orchid-orm@1.5.14
128
-
129
- ## 0.2.19
130
-
131
- ### Patch Changes
132
-
133
- - Updated dependencies
134
- - orchid-orm@1.5.13
135
-
136
- ## 0.2.18
137
-
138
- ### Patch Changes
139
-
140
- - Updated dependencies
141
- - orchid-orm@1.5.12
142
- - pqb@0.9.10
143
- - orchid-orm-schema-to-zod@0.2.16
144
-
145
- ## 0.2.17
146
-
147
- ### Patch Changes
148
-
149
- - Override column types via callback
150
- - Updated dependencies
151
- - orchid-orm@1.5.11
152
- - pqb@0.9.9
153
- - orchid-orm-schema-to-zod@0.2.15
154
-
155
- ## 0.2.16
156
-
157
- ### Patch Changes
158
-
159
- - Updated dependencies [ee1961e]
160
- - orchid-orm@1.5.10
161
- - pqb@0.9.8
162
- - orchid-orm-schema-to-zod@0.2.14
163
-
164
- ## 0.2.15
165
-
166
- ### Patch Changes
167
-
168
- - Updated dependencies
169
- - pqb@0.9.7
170
- - orchid-orm@1.5.9
171
- - orchid-orm-schema-to-zod@0.2.13
172
-
173
- ## 0.2.14
174
-
175
- ### Patch Changes
176
-
177
- - Updated dependencies
178
- - orchid-orm@1.5.8
179
-
180
- ## 0.2.13
181
-
182
- ### Patch Changes
183
-
184
- - Updated dependencies
185
- - pqb@0.9.6
186
- - orchid-orm@1.5.7
187
- - orchid-orm-schema-to-zod@0.2.12
188
-
189
- ## 0.2.12
190
-
191
- ### Patch Changes
192
-
193
- - Updated dependencies
194
- - pqb@0.9.5
195
- - orchid-orm@1.5.6
196
- - orchid-orm-schema-to-zod@0.2.11
197
-
198
- ## 0.2.11
199
-
200
- ### Patch Changes
201
-
202
- - Updated dependencies
203
- - orchid-orm@1.5.5
204
-
205
- ## 0.2.10
206
-
207
- ### Patch Changes
208
-
209
- - Updated dependencies
210
- - pqb@0.9.4
211
- - orchid-orm@1.5.4
212
- - orchid-orm-schema-to-zod@0.2.10
213
-
214
- ## 0.2.9
215
-
216
- ### Patch Changes
217
-
218
- - Change package.json exports for esm support
219
- - Updated dependencies
220
- - orchid-orm@1.5.3
221
- - pqb@0.9.3
222
- - orchid-orm-schema-to-zod@0.2.9
223
-
224
- ## 0.2.8
225
-
226
- ### Patch Changes
227
-
228
- - Updated dependencies
229
- - pqb@0.9.2
230
- - orchid-orm@1.5.2
231
- - orchid-orm-schema-to-zod@0.2.8
232
-
233
- ## 0.2.7
234
-
235
- ### Patch Changes
236
-
237
- - Updated dependencies
238
- - pqb@0.9.1
239
- - orchid-orm@1.5.1
240
- - orchid-orm-schema-to-zod@0.2.7
241
-
242
- ## 0.2.6
243
-
244
- ### Patch Changes
245
-
246
- - f1cd5db: Handle multiple indexes and foreignKeys of the column
247
- - Updated dependencies
248
- - Updated dependencies [f1cd5db]
249
- - orchid-orm@1.5.0
250
- - pqb@0.9.0
251
- - orchid-orm-schema-to-zod@0.2.6
252
-
253
- ## 0.2.5
254
-
255
- ### Patch Changes
256
-
257
- - Updated dependencies
258
- - orchid-orm@1.4.22
259
- - pqb@0.8.5
260
- - orchid-orm-schema-to-zod@0.2.5
261
-
262
- ## 0.2.4
263
-
264
- ### Patch Changes
265
-
266
- - Updated dependencies
267
- - Updated dependencies
268
- - orchid-orm@1.4.21
269
- - pqb@0.8.4
270
- - orchid-orm-schema-to-zod@0.2.4
271
-
272
- ## 0.2.3
273
-
274
- ### Patch Changes
275
-
276
- - Updated dependencies
277
- - pqb@0.8.3
278
- - orchid-orm@1.4.19
279
- - orchid-orm-schema-to-zod@0.2.3
280
-
281
- ## 0.2.2
282
-
283
- ### Patch Changes
284
-
285
- - Add code generator to change project files after migrations
286
- - Updated dependencies
287
- - orchid-orm@1.4.18
288
- - pqb@0.8.2
289
- - orchid-orm-schema-to-zod@0.2.2
290
-
291
- ## 0.2.1
292
-
293
- ### Patch Changes
294
-
295
- - Updated dependencies
296
- - pqb@0.8.1
297
- - orchid-orm-schema-to-zod@0.2.1
298
- - orchid-orm@1.4.17
299
-
300
- ## 0.2.0
301
-
302
- ### Minor Changes
303
-
304
- - 3f25b4d: Rename all model words to table words, because all models here are not models in OOP meaning
305
-
306
- ### Patch Changes
307
-
308
- - Updated dependencies [3f25b4d]
309
- - orchid-orm@2.0.0
310
- - pqb@0.8.0
311
- - orchid-orm-schema-to-zod@0.2.0
312
-
313
- ## 0.1.16
314
-
315
- ### Patch Changes
316
-
317
- - Updated dependencies
318
- - orchid-orm@1.3.16
319
- - pqb@0.7.13
320
- - orchid-orm-schema-to-zod@0.1.13
321
-
322
- ## 0.1.15
323
-
324
- ### Patch Changes
325
-
326
- - Updated dependencies
327
- - pqb@0.7.12
328
- - orchid-orm@1.3.15
329
- - orchid-orm-schema-to-zod@0.1.12
330
-
331
- ## 0.1.14
332
-
333
- ### Patch Changes
334
-
335
- - Updated dependencies
336
- - pqb@0.7.11
337
- - orchid-orm@1.3.14
338
- - orchid-orm-schema-to-zod@0.1.11
339
-
340
- ## 0.1.13
341
-
342
- ### Patch Changes
343
-
344
- - Updated dependencies
345
- - pqb@0.7.10
346
- - orchid-orm@1.3.13
347
- - orchid-orm-schema-to-zod@0.1.10
348
-
349
- ## 0.1.12
350
-
351
- ### Patch Changes
352
-
353
- - Updated dependencies
354
- - pqb@0.7.9
355
- - orchid-orm@1.3.12
356
- - orchid-orm-schema-to-zod@0.1.9
357
-
358
- ## 0.1.11
359
-
360
- ### Patch Changes
361
-
362
- - Change connectionString to databaseURL option, add ssl option
363
- - Updated dependencies
364
- - orchid-orm@1.3.11
365
- - pqb@0.7.8
366
- - orchid-orm-schema-to-zod@0.1.8
367
-
368
- ## 0.1.10
369
-
370
- ### Patch Changes
371
-
372
- - Updated dependencies
373
- - pqb@0.7.7
374
- - orchid-orm@1.3.10
375
- - orchid-orm-schema-to-zod@0.1.7
376
-
377
- ## 0.1.9
378
-
379
- ### Patch Changes
380
-
381
- - Updated dependencies
382
- - pqb@0.7.6
383
- - orchid-orm@1.3.9
384
- - orchid-orm-schema-to-zod@0.1.6
385
-
386
- ## 0.1.8
387
-
388
- ### Patch Changes
389
-
390
- - Updated dependencies
391
- - pqb@0.7.5
392
- - orchid-orm@1.3.8
393
- - orchid-orm-schema-to-zod@0.1.5
394
-
395
- ## 0.1.7
396
-
397
- ### Patch Changes
398
-
399
- - Update homepage link in package.json
400
- - Updated dependencies
401
- - orchid-orm@1.3.7
402
- - pqb@0.7.4
403
- - orchid-orm-schema-to-zod@0.1.4
404
-
405
- ## 0.1.6
406
-
407
- ### Patch Changes
408
-
409
- - Fix preventing explicitly set data in test-factory to be prefixed as for unique column
410
-
411
- ## 0.1.5
412
-
413
- ### Patch Changes
414
-
415
- - Add required min and max parameters to text column
416
- - Updated dependencies
417
- - orchid-orm@1.3.6
418
- - pqb@0.7.3
419
- - orchid-orm-schema-to-zod@0.1.3
420
-
421
- ## 0.1.4
422
-
423
- ### Patch Changes
424
-
425
- - Updated dependencies
426
- - orchid-orm@1.3.5
427
-
428
- ## 0.1.3
429
-
430
- ### Patch Changes
431
-
432
- - 9b8b3d5: Prefix unique columns with sequences in test factory
433
- - Updated dependencies [9b8b3d5]
434
- - pqb@0.7.2
435
- - orchid-orm@1.3.4
436
- - orchid-orm-schema-to-zod@0.1.2
437
-
438
- ## 0.1.2
439
-
440
- ### Patch Changes
441
-
442
- - Updated dependencies
443
- - orchid-orm@1.3.3
444
- - pqb@0.7.1
445
- - orchid-orm-schema-to-zod@0.1.1
446
-
447
- ## 0.1.1
448
-
449
- ### Patch Changes
450
-
451
- - Updated dependencies [1147182]
452
- - orchid-orm@1.3.2
453
-
454
- ## 0.1.0
455
-
456
- ### Minor Changes
457
-
458
- - 883c3e4: Add changeset
459
-
460
- ### Patch Changes
461
-
462
- - Updated dependencies [883c3e4]
463
- - orchid-orm@1.3.0
464
- - pqb@0.7.0
465
- - orchid-orm-schema-to-zod@0.1.0
@@ -1,4 +0,0 @@
1
- {"total": {"lines":{"total":171,"covered":163,"skipped":0,"pct":95.32},"statements":{"total":186,"covered":176,"skipped":0,"pct":94.62},"functions":{"total":51,"covered":46,"skipped":0,"pct":90.19},"branches":{"total":81,"covered":72,"skipped":0,"pct":88.88},"branchesTrue":{"total":0,"covered":0,"skipped":0,"pct":"Unknown"}}
2
- ,"/home/romeo/dev/my/orchid-orm/packages/test-factory/src/factory.ts": {"lines":{"total":151,"covered":145,"skipped":0,"pct":96.02},"functions":{"total":36,"covered":33,"skipped":0,"pct":91.66},"statements":{"total":160,"covered":152,"skipped":0,"pct":95},"branches":{"total":79,"covered":70,"skipped":0,"pct":88.6}}
3
- ,"/home/romeo/dev/my/orchid-orm/packages/test-factory/src/test-utils.ts": {"lines":{"total":20,"covered":18,"skipped":0,"pct":90},"functions":{"total":15,"covered":13,"skipped":0,"pct":86.66},"statements":{"total":26,"covered":24,"skipped":0,"pct":92.3},"branches":{"total":2,"covered":2,"skipped":0,"pct":100}}
4
- }