@featurevisor/core 1.1.1 → 1.2.0
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/.eslintcache +1 -1
- package/CHANGELOG.md +11 -0
- package/coverage/clover.xml +161 -5
- package/coverage/coverage-final.json +2 -0
- package/coverage/lcov-report/index.html +32 -32
- package/coverage/lcov-report/lib/builder/allocator.js.html +1 -1
- package/coverage/lcov-report/lib/builder/index.html +1 -1
- package/coverage/lcov-report/lib/builder/traffic.js.html +1 -1
- package/coverage/lcov-report/lib/tester/checkIfObjectsAreEqual.js.html +1 -1
- package/coverage/lcov-report/lib/tester/index.html +25 -10
- package/coverage/lcov-report/lib/tester/matrix.js.html +487 -0
- package/coverage/lcov-report/src/builder/allocator.ts.html +1 -1
- package/coverage/lcov-report/src/builder/index.html +1 -1
- package/coverage/lcov-report/src/builder/traffic.ts.html +1 -1
- package/coverage/lcov-report/src/tester/checkIfObjectsAreEqual.ts.html +1 -1
- package/coverage/lcov-report/src/tester/index.html +25 -10
- package/coverage/lcov-report/src/tester/matrix.ts.html +640 -0
- package/coverage/lcov.info +276 -0
- package/lib/linter/testSchema.js +19 -4
- package/lib/linter/testSchema.js.map +1 -1
- package/lib/tester/matrix.d.ts +13 -0
- package/lib/tester/matrix.js +135 -0
- package/lib/tester/matrix.js.map +1 -0
- package/lib/tester/matrix.spec.d.ts +1 -0
- package/lib/tester/matrix.spec.js +42 -0
- package/lib/tester/matrix.spec.js.map +1 -0
- package/lib/tester/testFeature.js +26 -16
- package/lib/tester/testFeature.js.map +1 -1
- package/lib/tester/testSegment.js +14 -11
- package/lib/tester/testSegment.js.map +1 -1
- package/package.json +5 -5
- package/src/linter/testSchema.ts +21 -2
- package/src/tester/matrix.spec.ts +49 -0
- package/src/tester/matrix.ts +185 -0
- package/src/tester/testFeature.ts +121 -114
- package/src/tester/testSegment.ts +17 -11
|
@@ -0,0 +1,487 @@
|
|
|
1
|
+
|
|
2
|
+
<!doctype html>
|
|
3
|
+
<html lang="en">
|
|
4
|
+
|
|
5
|
+
<head>
|
|
6
|
+
<title>Code coverage report for lib/tester/matrix.js</title>
|
|
7
|
+
<meta charset="utf-8" />
|
|
8
|
+
<link rel="stylesheet" href="../../prettify.css" />
|
|
9
|
+
<link rel="stylesheet" href="../../base.css" />
|
|
10
|
+
<link rel="shortcut icon" type="image/x-icon" href="../../favicon.png" />
|
|
11
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
12
|
+
<style type='text/css'>
|
|
13
|
+
.coverage-summary .sorter {
|
|
14
|
+
background-image: url(../../sort-arrow-sprite.png);
|
|
15
|
+
}
|
|
16
|
+
</style>
|
|
17
|
+
</head>
|
|
18
|
+
|
|
19
|
+
<body>
|
|
20
|
+
<div class='wrapper'>
|
|
21
|
+
<div class='pad1'>
|
|
22
|
+
<h1><a href="../../index.html">All files</a> / <a href="index.html">lib/tester</a> matrix.js</h1>
|
|
23
|
+
<div class='clearfix'>
|
|
24
|
+
|
|
25
|
+
<div class='fl pad1y space-right2'>
|
|
26
|
+
<span class="strong">28.73% </span>
|
|
27
|
+
<span class="quiet">Statements</span>
|
|
28
|
+
<span class='fraction'>25/87</span>
|
|
29
|
+
</div>
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
<div class='fl pad1y space-right2'>
|
|
33
|
+
<span class="strong">20% </span>
|
|
34
|
+
<span class="quiet">Branches</span>
|
|
35
|
+
<span class='fraction'>8/40</span>
|
|
36
|
+
</div>
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
<div class='fl pad1y space-right2'>
|
|
40
|
+
<span class="strong">25% </span>
|
|
41
|
+
<span class="quiet">Functions</span>
|
|
42
|
+
<span class='fraction'>3/12</span>
|
|
43
|
+
</div>
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
<div class='fl pad1y space-right2'>
|
|
47
|
+
<span class="strong">30% </span>
|
|
48
|
+
<span class="quiet">Lines</span>
|
|
49
|
+
<span class='fraction'>24/80</span>
|
|
50
|
+
</div>
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
</div>
|
|
54
|
+
<p class="quiet">
|
|
55
|
+
Press <em>n</em> or <em>j</em> to go to the next uncovered block, <em>b</em>, <em>p</em> or <em>k</em> for the previous block.
|
|
56
|
+
</p>
|
|
57
|
+
<template id="filterTemplate">
|
|
58
|
+
<div class="quiet">
|
|
59
|
+
Filter:
|
|
60
|
+
<input oninput="onInput()" type="search" id="fileSearch">
|
|
61
|
+
</div>
|
|
62
|
+
</template>
|
|
63
|
+
</div>
|
|
64
|
+
<div class='status-line low'></div>
|
|
65
|
+
<pre><table class="coverage">
|
|
66
|
+
<tr><td class="line-count quiet"><a name='L1'></a><a href='#L1'>1</a>
|
|
67
|
+
<a name='L2'></a><a href='#L2'>2</a>
|
|
68
|
+
<a name='L3'></a><a href='#L3'>3</a>
|
|
69
|
+
<a name='L4'></a><a href='#L4'>4</a>
|
|
70
|
+
<a name='L5'></a><a href='#L5'>5</a>
|
|
71
|
+
<a name='L6'></a><a href='#L6'>6</a>
|
|
72
|
+
<a name='L7'></a><a href='#L7'>7</a>
|
|
73
|
+
<a name='L8'></a><a href='#L8'>8</a>
|
|
74
|
+
<a name='L9'></a><a href='#L9'>9</a>
|
|
75
|
+
<a name='L10'></a><a href='#L10'>10</a>
|
|
76
|
+
<a name='L11'></a><a href='#L11'>11</a>
|
|
77
|
+
<a name='L12'></a><a href='#L12'>12</a>
|
|
78
|
+
<a name='L13'></a><a href='#L13'>13</a>
|
|
79
|
+
<a name='L14'></a><a href='#L14'>14</a>
|
|
80
|
+
<a name='L15'></a><a href='#L15'>15</a>
|
|
81
|
+
<a name='L16'></a><a href='#L16'>16</a>
|
|
82
|
+
<a name='L17'></a><a href='#L17'>17</a>
|
|
83
|
+
<a name='L18'></a><a href='#L18'>18</a>
|
|
84
|
+
<a name='L19'></a><a href='#L19'>19</a>
|
|
85
|
+
<a name='L20'></a><a href='#L20'>20</a>
|
|
86
|
+
<a name='L21'></a><a href='#L21'>21</a>
|
|
87
|
+
<a name='L22'></a><a href='#L22'>22</a>
|
|
88
|
+
<a name='L23'></a><a href='#L23'>23</a>
|
|
89
|
+
<a name='L24'></a><a href='#L24'>24</a>
|
|
90
|
+
<a name='L25'></a><a href='#L25'>25</a>
|
|
91
|
+
<a name='L26'></a><a href='#L26'>26</a>
|
|
92
|
+
<a name='L27'></a><a href='#L27'>27</a>
|
|
93
|
+
<a name='L28'></a><a href='#L28'>28</a>
|
|
94
|
+
<a name='L29'></a><a href='#L29'>29</a>
|
|
95
|
+
<a name='L30'></a><a href='#L30'>30</a>
|
|
96
|
+
<a name='L31'></a><a href='#L31'>31</a>
|
|
97
|
+
<a name='L32'></a><a href='#L32'>32</a>
|
|
98
|
+
<a name='L33'></a><a href='#L33'>33</a>
|
|
99
|
+
<a name='L34'></a><a href='#L34'>34</a>
|
|
100
|
+
<a name='L35'></a><a href='#L35'>35</a>
|
|
101
|
+
<a name='L36'></a><a href='#L36'>36</a>
|
|
102
|
+
<a name='L37'></a><a href='#L37'>37</a>
|
|
103
|
+
<a name='L38'></a><a href='#L38'>38</a>
|
|
104
|
+
<a name='L39'></a><a href='#L39'>39</a>
|
|
105
|
+
<a name='L40'></a><a href='#L40'>40</a>
|
|
106
|
+
<a name='L41'></a><a href='#L41'>41</a>
|
|
107
|
+
<a name='L42'></a><a href='#L42'>42</a>
|
|
108
|
+
<a name='L43'></a><a href='#L43'>43</a>
|
|
109
|
+
<a name='L44'></a><a href='#L44'>44</a>
|
|
110
|
+
<a name='L45'></a><a href='#L45'>45</a>
|
|
111
|
+
<a name='L46'></a><a href='#L46'>46</a>
|
|
112
|
+
<a name='L47'></a><a href='#L47'>47</a>
|
|
113
|
+
<a name='L48'></a><a href='#L48'>48</a>
|
|
114
|
+
<a name='L49'></a><a href='#L49'>49</a>
|
|
115
|
+
<a name='L50'></a><a href='#L50'>50</a>
|
|
116
|
+
<a name='L51'></a><a href='#L51'>51</a>
|
|
117
|
+
<a name='L52'></a><a href='#L52'>52</a>
|
|
118
|
+
<a name='L53'></a><a href='#L53'>53</a>
|
|
119
|
+
<a name='L54'></a><a href='#L54'>54</a>
|
|
120
|
+
<a name='L55'></a><a href='#L55'>55</a>
|
|
121
|
+
<a name='L56'></a><a href='#L56'>56</a>
|
|
122
|
+
<a name='L57'></a><a href='#L57'>57</a>
|
|
123
|
+
<a name='L58'></a><a href='#L58'>58</a>
|
|
124
|
+
<a name='L59'></a><a href='#L59'>59</a>
|
|
125
|
+
<a name='L60'></a><a href='#L60'>60</a>
|
|
126
|
+
<a name='L61'></a><a href='#L61'>61</a>
|
|
127
|
+
<a name='L62'></a><a href='#L62'>62</a>
|
|
128
|
+
<a name='L63'></a><a href='#L63'>63</a>
|
|
129
|
+
<a name='L64'></a><a href='#L64'>64</a>
|
|
130
|
+
<a name='L65'></a><a href='#L65'>65</a>
|
|
131
|
+
<a name='L66'></a><a href='#L66'>66</a>
|
|
132
|
+
<a name='L67'></a><a href='#L67'>67</a>
|
|
133
|
+
<a name='L68'></a><a href='#L68'>68</a>
|
|
134
|
+
<a name='L69'></a><a href='#L69'>69</a>
|
|
135
|
+
<a name='L70'></a><a href='#L70'>70</a>
|
|
136
|
+
<a name='L71'></a><a href='#L71'>71</a>
|
|
137
|
+
<a name='L72'></a><a href='#L72'>72</a>
|
|
138
|
+
<a name='L73'></a><a href='#L73'>73</a>
|
|
139
|
+
<a name='L74'></a><a href='#L74'>74</a>
|
|
140
|
+
<a name='L75'></a><a href='#L75'>75</a>
|
|
141
|
+
<a name='L76'></a><a href='#L76'>76</a>
|
|
142
|
+
<a name='L77'></a><a href='#L77'>77</a>
|
|
143
|
+
<a name='L78'></a><a href='#L78'>78</a>
|
|
144
|
+
<a name='L79'></a><a href='#L79'>79</a>
|
|
145
|
+
<a name='L80'></a><a href='#L80'>80</a>
|
|
146
|
+
<a name='L81'></a><a href='#L81'>81</a>
|
|
147
|
+
<a name='L82'></a><a href='#L82'>82</a>
|
|
148
|
+
<a name='L83'></a><a href='#L83'>83</a>
|
|
149
|
+
<a name='L84'></a><a href='#L84'>84</a>
|
|
150
|
+
<a name='L85'></a><a href='#L85'>85</a>
|
|
151
|
+
<a name='L86'></a><a href='#L86'>86</a>
|
|
152
|
+
<a name='L87'></a><a href='#L87'>87</a>
|
|
153
|
+
<a name='L88'></a><a href='#L88'>88</a>
|
|
154
|
+
<a name='L89'></a><a href='#L89'>89</a>
|
|
155
|
+
<a name='L90'></a><a href='#L90'>90</a>
|
|
156
|
+
<a name='L91'></a><a href='#L91'>91</a>
|
|
157
|
+
<a name='L92'></a><a href='#L92'>92</a>
|
|
158
|
+
<a name='L93'></a><a href='#L93'>93</a>
|
|
159
|
+
<a name='L94'></a><a href='#L94'>94</a>
|
|
160
|
+
<a name='L95'></a><a href='#L95'>95</a>
|
|
161
|
+
<a name='L96'></a><a href='#L96'>96</a>
|
|
162
|
+
<a name='L97'></a><a href='#L97'>97</a>
|
|
163
|
+
<a name='L98'></a><a href='#L98'>98</a>
|
|
164
|
+
<a name='L99'></a><a href='#L99'>99</a>
|
|
165
|
+
<a name='L100'></a><a href='#L100'>100</a>
|
|
166
|
+
<a name='L101'></a><a href='#L101'>101</a>
|
|
167
|
+
<a name='L102'></a><a href='#L102'>102</a>
|
|
168
|
+
<a name='L103'></a><a href='#L103'>103</a>
|
|
169
|
+
<a name='L104'></a><a href='#L104'>104</a>
|
|
170
|
+
<a name='L105'></a><a href='#L105'>105</a>
|
|
171
|
+
<a name='L106'></a><a href='#L106'>106</a>
|
|
172
|
+
<a name='L107'></a><a href='#L107'>107</a>
|
|
173
|
+
<a name='L108'></a><a href='#L108'>108</a>
|
|
174
|
+
<a name='L109'></a><a href='#L109'>109</a>
|
|
175
|
+
<a name='L110'></a><a href='#L110'>110</a>
|
|
176
|
+
<a name='L111'></a><a href='#L111'>111</a>
|
|
177
|
+
<a name='L112'></a><a href='#L112'>112</a>
|
|
178
|
+
<a name='L113'></a><a href='#L113'>113</a>
|
|
179
|
+
<a name='L114'></a><a href='#L114'>114</a>
|
|
180
|
+
<a name='L115'></a><a href='#L115'>115</a>
|
|
181
|
+
<a name='L116'></a><a href='#L116'>116</a>
|
|
182
|
+
<a name='L117'></a><a href='#L117'>117</a>
|
|
183
|
+
<a name='L118'></a><a href='#L118'>118</a>
|
|
184
|
+
<a name='L119'></a><a href='#L119'>119</a>
|
|
185
|
+
<a name='L120'></a><a href='#L120'>120</a>
|
|
186
|
+
<a name='L121'></a><a href='#L121'>121</a>
|
|
187
|
+
<a name='L122'></a><a href='#L122'>122</a>
|
|
188
|
+
<a name='L123'></a><a href='#L123'>123</a>
|
|
189
|
+
<a name='L124'></a><a href='#L124'>124</a>
|
|
190
|
+
<a name='L125'></a><a href='#L125'>125</a>
|
|
191
|
+
<a name='L126'></a><a href='#L126'>126</a>
|
|
192
|
+
<a name='L127'></a><a href='#L127'>127</a>
|
|
193
|
+
<a name='L128'></a><a href='#L128'>128</a>
|
|
194
|
+
<a name='L129'></a><a href='#L129'>129</a>
|
|
195
|
+
<a name='L130'></a><a href='#L130'>130</a>
|
|
196
|
+
<a name='L131'></a><a href='#L131'>131</a>
|
|
197
|
+
<a name='L132'></a><a href='#L132'>132</a>
|
|
198
|
+
<a name='L133'></a><a href='#L133'>133</a>
|
|
199
|
+
<a name='L134'></a><a href='#L134'>134</a>
|
|
200
|
+
<a name='L135'></a><a href='#L135'>135</a></td><td class="line-coverage quiet"><span class="cline-any cline-neutral"> </span>
|
|
201
|
+
<span class="cline-any cline-yes">1x</span>
|
|
202
|
+
<span class="cline-any cline-yes">2x</span>
|
|
203
|
+
<span class="cline-any cline-no"> </span>
|
|
204
|
+
<span class="cline-any cline-no"> </span>
|
|
205
|
+
<span class="cline-any cline-no"> </span>
|
|
206
|
+
<span class="cline-any cline-no"> </span>
|
|
207
|
+
<span class="cline-any cline-neutral"> </span>
|
|
208
|
+
<span class="cline-any cline-no"> </span>
|
|
209
|
+
<span class="cline-any cline-neutral"> </span>
|
|
210
|
+
<span class="cline-any cline-yes">2x</span>
|
|
211
|
+
<span class="cline-any cline-neutral"> </span>
|
|
212
|
+
<span class="cline-any cline-yes">1x</span>
|
|
213
|
+
<span class="cline-any cline-yes">1x</span>
|
|
214
|
+
<span class="cline-any cline-neutral"> </span>
|
|
215
|
+
<span class="cline-any cline-neutral"> </span>
|
|
216
|
+
<span class="cline-any cline-yes">10x</span>
|
|
217
|
+
<span class="cline-any cline-yes">10x</span>
|
|
218
|
+
<span class="cline-any cline-yes">10x</span>
|
|
219
|
+
<span class="cline-any cline-yes">20x</span>
|
|
220
|
+
<span class="cline-any cline-yes">20x</span>
|
|
221
|
+
<span class="cline-any cline-yes">12x</span>
|
|
222
|
+
<span class="cline-any cline-neutral"> </span>
|
|
223
|
+
<span class="cline-any cline-neutral"> </span>
|
|
224
|
+
<span class="cline-any cline-yes">8x</span>
|
|
225
|
+
<span class="cline-any cline-neutral"> </span>
|
|
226
|
+
<span class="cline-any cline-neutral"> </span>
|
|
227
|
+
<span class="cline-any cline-neutral"> </span>
|
|
228
|
+
<span class="cline-any cline-neutral"> </span>
|
|
229
|
+
<span class="cline-any cline-yes">3x</span>
|
|
230
|
+
<span class="cline-any cline-yes">3x</span>
|
|
231
|
+
<span class="cline-any cline-yes">1x</span>
|
|
232
|
+
<span class="cline-any cline-neutral"> </span>
|
|
233
|
+
<span class="cline-any cline-yes">2x</span>
|
|
234
|
+
<span class="cline-any cline-yes">2x</span>
|
|
235
|
+
<span class="cline-any cline-yes">2x</span>
|
|
236
|
+
<span class="cline-any cline-neutral"> </span>
|
|
237
|
+
<span class="cline-any cline-yes">1x</span>
|
|
238
|
+
<span class="cline-any cline-neutral"> </span>
|
|
239
|
+
<span class="cline-any cline-no"> </span>
|
|
240
|
+
<span class="cline-any cline-no"> </span>
|
|
241
|
+
<span class="cline-any cline-neutral"> </span>
|
|
242
|
+
<span class="cline-any cline-no"> </span>
|
|
243
|
+
<span class="cline-any cline-no"> </span>
|
|
244
|
+
<span class="cline-any cline-neutral"> </span>
|
|
245
|
+
<span class="cline-any cline-neutral"> </span>
|
|
246
|
+
<span class="cline-any cline-no"> </span>
|
|
247
|
+
<span class="cline-any cline-no"> </span>
|
|
248
|
+
<span class="cline-any cline-no"> </span>
|
|
249
|
+
<span class="cline-any cline-neutral"> </span>
|
|
250
|
+
<span class="cline-any cline-neutral"> </span>
|
|
251
|
+
<span class="cline-any cline-no"> </span>
|
|
252
|
+
<span class="cline-any cline-neutral"> </span>
|
|
253
|
+
<span class="cline-any cline-no"> </span>
|
|
254
|
+
<span class="cline-any cline-neutral"> </span>
|
|
255
|
+
<span class="cline-any cline-yes">1x</span>
|
|
256
|
+
<span class="cline-any cline-neutral"> </span>
|
|
257
|
+
<span class="cline-any cline-neutral"> </span>
|
|
258
|
+
<span class="cline-any cline-neutral"> </span>
|
|
259
|
+
<span class="cline-any cline-neutral"> </span>
|
|
260
|
+
<span class="cline-any cline-no"> </span>
|
|
261
|
+
<span class="cline-any cline-neutral"> </span>
|
|
262
|
+
<span class="cline-any cline-no"> </span>
|
|
263
|
+
<span class="cline-any cline-neutral"> </span>
|
|
264
|
+
<span class="cline-any cline-no"> </span>
|
|
265
|
+
<span class="cline-any cline-no"> </span>
|
|
266
|
+
<span class="cline-any cline-no"> </span>
|
|
267
|
+
<span class="cline-any cline-neutral"> </span>
|
|
268
|
+
<span class="cline-any cline-neutral"> </span>
|
|
269
|
+
<span class="cline-any cline-no"> </span>
|
|
270
|
+
<span class="cline-any cline-no"> </span>
|
|
271
|
+
<span class="cline-any cline-no"> </span>
|
|
272
|
+
<span class="cline-any cline-neutral"> </span>
|
|
273
|
+
<span class="cline-any cline-neutral"> </span>
|
|
274
|
+
<span class="cline-any cline-neutral"> </span>
|
|
275
|
+
<span class="cline-any cline-neutral"> </span>
|
|
276
|
+
<span class="cline-any cline-neutral"> </span>
|
|
277
|
+
<span class="cline-any cline-no"> </span>
|
|
278
|
+
<span class="cline-any cline-no"> </span>
|
|
279
|
+
<span class="cline-any cline-neutral"> </span>
|
|
280
|
+
<span class="cline-any cline-no"> </span>
|
|
281
|
+
<span class="cline-any cline-neutral"> </span>
|
|
282
|
+
<span class="cline-any cline-yes">1x</span>
|
|
283
|
+
<span class="cline-any cline-neutral"> </span>
|
|
284
|
+
<span class="cline-any cline-no"> </span>
|
|
285
|
+
<span class="cline-any cline-no"> </span>
|
|
286
|
+
<span class="cline-any cline-no"> </span>
|
|
287
|
+
<span class="cline-any cline-no"> </span>
|
|
288
|
+
<span class="cline-any cline-neutral"> </span>
|
|
289
|
+
<span class="cline-any cline-no"> </span>
|
|
290
|
+
<span class="cline-any cline-no"> </span>
|
|
291
|
+
<span class="cline-any cline-no"> </span>
|
|
292
|
+
<span class="cline-any cline-no"> </span>
|
|
293
|
+
<span class="cline-any cline-no"> </span>
|
|
294
|
+
<span class="cline-any cline-no"> </span>
|
|
295
|
+
<span class="cline-any cline-no"> </span>
|
|
296
|
+
<span class="cline-any cline-neutral"> </span>
|
|
297
|
+
<span class="cline-any cline-no"> </span>
|
|
298
|
+
<span class="cline-any cline-neutral"> </span>
|
|
299
|
+
<span class="cline-any cline-yes">1x</span>
|
|
300
|
+
<span class="cline-any cline-neutral"> </span>
|
|
301
|
+
<span class="cline-any cline-neutral"> </span>
|
|
302
|
+
<span class="cline-any cline-neutral"> </span>
|
|
303
|
+
<span class="cline-any cline-neutral"> </span>
|
|
304
|
+
<span class="cline-any cline-no"> </span>
|
|
305
|
+
<span class="cline-any cline-neutral"> </span>
|
|
306
|
+
<span class="cline-any cline-no"> </span>
|
|
307
|
+
<span class="cline-any cline-no"> </span>
|
|
308
|
+
<span class="cline-any cline-no"> </span>
|
|
309
|
+
<span class="cline-any cline-neutral"> </span>
|
|
310
|
+
<span class="cline-any cline-neutral"> </span>
|
|
311
|
+
<span class="cline-any cline-no"> </span>
|
|
312
|
+
<span class="cline-any cline-no"> </span>
|
|
313
|
+
<span class="cline-any cline-neutral"> </span>
|
|
314
|
+
<span class="cline-any cline-no"> </span>
|
|
315
|
+
<span class="cline-any cline-neutral"> </span>
|
|
316
|
+
<span class="cline-any cline-yes">1x</span>
|
|
317
|
+
<span class="cline-any cline-neutral"> </span>
|
|
318
|
+
<span class="cline-any cline-no"> </span>
|
|
319
|
+
<span class="cline-any cline-no"> </span>
|
|
320
|
+
<span class="cline-any cline-no"> </span>
|
|
321
|
+
<span class="cline-any cline-no"> </span>
|
|
322
|
+
<span class="cline-any cline-neutral"> </span>
|
|
323
|
+
<span class="cline-any cline-no"> </span>
|
|
324
|
+
<span class="cline-any cline-no"> </span>
|
|
325
|
+
<span class="cline-any cline-no"> </span>
|
|
326
|
+
<span class="cline-any cline-no"> </span>
|
|
327
|
+
<span class="cline-any cline-no"> </span>
|
|
328
|
+
<span class="cline-any cline-no"> </span>
|
|
329
|
+
<span class="cline-any cline-no"> </span>
|
|
330
|
+
<span class="cline-any cline-neutral"> </span>
|
|
331
|
+
<span class="cline-any cline-no"> </span>
|
|
332
|
+
<span class="cline-any cline-neutral"> </span>
|
|
333
|
+
<span class="cline-any cline-yes">1x</span>
|
|
334
|
+
<span class="cline-any cline-neutral"> </span></td><td class="text"><pre class="prettyprint lang-js">"use strict";
|
|
335
|
+
var __assign = (this && this.__assign) || function () {
|
|
336
|
+
__assign = Object.assign || <span class="fstat-no" title="function not covered" ><span class="branch-1 cbranch-no" title="branch not covered" >fu</span>nction(t) {</span>
|
|
337
|
+
<span class="cstat-no" title="statement not covered" > for (var s, i = <span class="cstat-no" title="statement not covered" >1,</span> n = <span class="cstat-no" title="statement not covered" >arguments.length;</span> i < n; i++) {</span>
|
|
338
|
+
<span class="cstat-no" title="statement not covered" > s = arguments[i];</span>
|
|
339
|
+
<span class="cstat-no" title="statement not covered" > for (var p in s) <span class="cstat-no" title="statement not covered" >if (Object.prototype.hasOwnProperty.call(s, p))</span></span>
|
|
340
|
+
<span class="cstat-no" title="statement not covered" > t[p] = s[p];</span>
|
|
341
|
+
}
|
|
342
|
+
<span class="cstat-no" title="statement not covered" > return t;</span>
|
|
343
|
+
};
|
|
344
|
+
return __assign.apply(this, arguments);
|
|
345
|
+
};
|
|
346
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
347
|
+
exports.getSegmentAssertionsFromMatrix = exports.applyCombinationToSegmentAssertion = exports.getFeatureAssertionsFromMatrix = exports.applyCombinationToFeatureAssertion = exports.applyCombinationToValue = exports.getMatrixCombinations = void 0;
|
|
348
|
+
function generateCombinations(keys, matrix, idx, prev, combinations) {
|
|
349
|
+
var _a;
|
|
350
|
+
var key = keys[idx];
|
|
351
|
+
var values = matrix[key];
|
|
352
|
+
for (var i = 0; i < values.length; i++) {
|
|
353
|
+
var combination = __assign(__assign({}, prev), (_a = {}, _a[key] = values[i], _a));
|
|
354
|
+
if (idx === keys.length - 1) {
|
|
355
|
+
combinations.push(combination);
|
|
356
|
+
}
|
|
357
|
+
else {
|
|
358
|
+
generateCombinations(keys, matrix, idx + 1, combination, combinations);
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
}
|
|
362
|
+
function getMatrixCombinations(matrix) {
|
|
363
|
+
var keys = Object.keys(matrix);
|
|
364
|
+
if (!keys.length) {
|
|
365
|
+
return [];
|
|
366
|
+
}
|
|
367
|
+
var combinations = [];
|
|
368
|
+
generateCombinations(keys, matrix, 0, {}, combinations);
|
|
369
|
+
return combinations;
|
|
370
|
+
}
|
|
371
|
+
exports.getMatrixCombinations = getMatrixCombinations;
|
|
372
|
+
function <span class="fstat-no" title="function not covered" >applyCombinationToValue(</span>value, combination) {
|
|
373
|
+
<span class="cstat-no" title="statement not covered" > if (typeof value === "string") {</span>
|
|
374
|
+
var variableKeysInValue = <span class="cstat-no" title="statement not covered" >value.match(/\${{(.+?)}}/g);</span>
|
|
375
|
+
// no variables found
|
|
376
|
+
<span class="cstat-no" title="statement not covered" > if (!variableKeysInValue) {</span>
|
|
377
|
+
<span class="cstat-no" title="statement not covered" > return value;</span>
|
|
378
|
+
}
|
|
379
|
+
// only 1 variable found, so we can insert the value directly
|
|
380
|
+
<span class="cstat-no" title="statement not covered" > if (variableKeysInValue.length === 1 && value.startsWith("${{") && value.endsWith("}}")) {</span>
|
|
381
|
+
var key = <span class="cstat-no" title="statement not covered" >value.replace("${{", "").replace("}}", "").trim();</span>
|
|
382
|
+
<span class="cstat-no" title="statement not covered" > return combination[key];</span>
|
|
383
|
+
}
|
|
384
|
+
// multiple variables found, so we can replace each as a whole string
|
|
385
|
+
<span class="cstat-no" title="statement not covered" > return value.replace(/\${{(.+?)}}/g, <span class="fstat-no" title="function not covered" >fu</span>nction (_, key) { <span class="cstat-no" title="statement not covered" >return combination[key.trim()]; </span>});</span>
|
|
386
|
+
}
|
|
387
|
+
<span class="cstat-no" title="statement not covered" > return value;</span>
|
|
388
|
+
}
|
|
389
|
+
exports.applyCombinationToValue = applyCombinationToValue;
|
|
390
|
+
/**
|
|
391
|
+
* Features
|
|
392
|
+
*/
|
|
393
|
+
function <span class="fstat-no" title="function not covered" >applyCombinationToFeatureAssertion(</span>combination, assertion) {
|
|
394
|
+
var flattenedAssertion = <span class="cstat-no" title="statement not covered" >__assign({}, assertion);</span>
|
|
395
|
+
// environment
|
|
396
|
+
<span class="cstat-no" title="statement not covered" > flattenedAssertion.environment = applyCombinationToValue(flattenedAssertion.environment, combination);</span>
|
|
397
|
+
// context
|
|
398
|
+
<span class="cstat-no" title="statement not covered" > flattenedAssertion.context = Object.keys(flattenedAssertion.context).reduce(<span class="fstat-no" title="function not covered" >fu</span>nction (acc, key) {</span>
|
|
399
|
+
<span class="cstat-no" title="statement not covered" > acc[key] = applyCombinationToValue(flattenedAssertion.context[key], combination);</span>
|
|
400
|
+
<span class="cstat-no" title="statement not covered" > return acc;</span>
|
|
401
|
+
}, {});
|
|
402
|
+
// at
|
|
403
|
+
<span class="cstat-no" title="statement not covered" > flattenedAssertion.at = applyCombinationToValue(flattenedAssertion.at, combination);</span>
|
|
404
|
+
<span class="cstat-no" title="statement not covered" > if (typeof flattenedAssertion.at === "string") {</span>
|
|
405
|
+
<span class="cstat-no" title="statement not covered" > flattenedAssertion.at =</span>
|
|
406
|
+
flattenedAssertion.at.indexOf(".") > -1
|
|
407
|
+
? parseFloat(flattenedAssertion.at)
|
|
408
|
+
: parseInt(flattenedAssertion.at, 10);
|
|
409
|
+
}
|
|
410
|
+
// description
|
|
411
|
+
<span class="cstat-no" title="statement not covered" > if (flattenedAssertion.description) {</span>
|
|
412
|
+
<span class="cstat-no" title="statement not covered" > flattenedAssertion.description = applyCombinationToValue(flattenedAssertion.description, combination);</span>
|
|
413
|
+
}
|
|
414
|
+
<span class="cstat-no" title="statement not covered" > return flattenedAssertion;</span>
|
|
415
|
+
}
|
|
416
|
+
exports.applyCombinationToFeatureAssertion = applyCombinationToFeatureAssertion;
|
|
417
|
+
function <span class="fstat-no" title="function not covered" >getFeatureAssertionsFromMatrix(</span>aIndex, assertionWithMatrix) {
|
|
418
|
+
<span class="cstat-no" title="statement not covered" > if (!assertionWithMatrix.matrix) {</span>
|
|
419
|
+
var assertion = <span class="cstat-no" title="statement not covered" >__assign({}, assertionWithMatrix);</span>
|
|
420
|
+
<span class="cstat-no" title="statement not covered" > assertion.description = " Assertion #".concat(aIndex + 1, ": (").concat(assertion.environment, ") ").concat(assertion.description || "at ".concat(assertion.at, "%"));</span>
|
|
421
|
+
<span class="cstat-no" title="statement not covered" > return [assertion];</span>
|
|
422
|
+
}
|
|
423
|
+
var assertions = <span class="cstat-no" title="statement not covered" >[];</span>
|
|
424
|
+
var combinations = <span class="cstat-no" title="statement not covered" >getMatrixCombinations(assertionWithMatrix.matrix);</span>
|
|
425
|
+
<span class="cstat-no" title="statement not covered" > for (var cIndex = <span class="cstat-no" title="statement not covered" >0;</span> cIndex < combinations.length; cIndex++) {</span>
|
|
426
|
+
var combination = <span class="cstat-no" title="statement not covered" >combinations[cIndex];</span>
|
|
427
|
+
var assertion = <span class="cstat-no" title="statement not covered" >applyCombinationToFeatureAssertion(combination, assertionWithMatrix);</span>
|
|
428
|
+
<span class="cstat-no" title="statement not covered" > assertion.description = " Assertion #".concat(aIndex + 1, ": (").concat(assertion.environment, ") ").concat(assertion.description || "at ".concat(assertion.at, "%"));</span>
|
|
429
|
+
<span class="cstat-no" title="statement not covered" > assertions.push(assertion);</span>
|
|
430
|
+
}
|
|
431
|
+
<span class="cstat-no" title="statement not covered" > return assertions;</span>
|
|
432
|
+
}
|
|
433
|
+
exports.getFeatureAssertionsFromMatrix = getFeatureAssertionsFromMatrix;
|
|
434
|
+
/**
|
|
435
|
+
* Segments
|
|
436
|
+
*/
|
|
437
|
+
function <span class="fstat-no" title="function not covered" >applyCombinationToSegmentAssertion(</span>combination, assertion) {
|
|
438
|
+
var flattenedAssertion = <span class="cstat-no" title="statement not covered" >__assign({}, assertion);</span>
|
|
439
|
+
// context
|
|
440
|
+
<span class="cstat-no" title="statement not covered" > flattenedAssertion.context = Object.keys(flattenedAssertion.context).reduce(<span class="fstat-no" title="function not covered" >fu</span>nction (acc, key) {</span>
|
|
441
|
+
<span class="cstat-no" title="statement not covered" > acc[key] = applyCombinationToValue(flattenedAssertion.context[key], combination);</span>
|
|
442
|
+
<span class="cstat-no" title="statement not covered" > return acc;</span>
|
|
443
|
+
}, {});
|
|
444
|
+
// description
|
|
445
|
+
<span class="cstat-no" title="statement not covered" > if (flattenedAssertion.description) {</span>
|
|
446
|
+
<span class="cstat-no" title="statement not covered" > flattenedAssertion.description = applyCombinationToValue(flattenedAssertion.description, combination);</span>
|
|
447
|
+
}
|
|
448
|
+
<span class="cstat-no" title="statement not covered" > return flattenedAssertion;</span>
|
|
449
|
+
}
|
|
450
|
+
exports.applyCombinationToSegmentAssertion = applyCombinationToSegmentAssertion;
|
|
451
|
+
function <span class="fstat-no" title="function not covered" >getSegmentAssertionsFromMatrix(</span>aIndex, assertionWithMatrix) {
|
|
452
|
+
<span class="cstat-no" title="statement not covered" > if (!assertionWithMatrix.matrix) {</span>
|
|
453
|
+
var assertion = <span class="cstat-no" title="statement not covered" >__assign({}, assertionWithMatrix);</span>
|
|
454
|
+
<span class="cstat-no" title="statement not covered" > assertion.description = " Assertion #".concat(aIndex + 1, ": ").concat(assertion.description || "#".concat(aIndex + 1));</span>
|
|
455
|
+
<span class="cstat-no" title="statement not covered" > return [assertion];</span>
|
|
456
|
+
}
|
|
457
|
+
var assertions = <span class="cstat-no" title="statement not covered" >[];</span>
|
|
458
|
+
var combinations = <span class="cstat-no" title="statement not covered" >getMatrixCombinations(assertionWithMatrix.matrix);</span>
|
|
459
|
+
<span class="cstat-no" title="statement not covered" > for (var cIndex = <span class="cstat-no" title="statement not covered" >0;</span> cIndex < combinations.length; cIndex++) {</span>
|
|
460
|
+
var combination = <span class="cstat-no" title="statement not covered" >combinations[cIndex];</span>
|
|
461
|
+
var assertion = <span class="cstat-no" title="statement not covered" >applyCombinationToSegmentAssertion(combination, assertionWithMatrix);</span>
|
|
462
|
+
<span class="cstat-no" title="statement not covered" > assertion.description = " Assertion #".concat(aIndex + 1, ": ").concat(assertion.description || "#".concat(aIndex + 1));</span>
|
|
463
|
+
<span class="cstat-no" title="statement not covered" > assertions.push(assertion);</span>
|
|
464
|
+
}
|
|
465
|
+
<span class="cstat-no" title="statement not covered" > return assertions;</span>
|
|
466
|
+
}
|
|
467
|
+
exports.getSegmentAssertionsFromMatrix = getSegmentAssertionsFromMatrix;
|
|
468
|
+
//# sourceMappingURL=matrix.js.map</pre></td></tr></table></pre>
|
|
469
|
+
|
|
470
|
+
<div class='push'></div><!-- for sticky footer -->
|
|
471
|
+
</div><!-- /wrapper -->
|
|
472
|
+
<div class='footer quiet pad2 space-top1 center small'>
|
|
473
|
+
Code coverage generated by
|
|
474
|
+
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
475
|
+
at 2024-01-16T17:40:45.135Z
|
|
476
|
+
</div>
|
|
477
|
+
<script src="../../prettify.js"></script>
|
|
478
|
+
<script>
|
|
479
|
+
window.onload = function () {
|
|
480
|
+
prettyPrint();
|
|
481
|
+
};
|
|
482
|
+
</script>
|
|
483
|
+
<script src="../../sorter.js"></script>
|
|
484
|
+
<script src="../../block-navigation.js"></script>
|
|
485
|
+
</body>
|
|
486
|
+
</html>
|
|
487
|
+
|
|
@@ -193,7 +193,7 @@ export function getUpdatedAvailableRangesAfterFilling(
|
|
|
193
193
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
194
194
|
Code coverage generated by
|
|
195
195
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
196
|
-
at 2024-01-
|
|
196
|
+
at 2024-01-16T17:40:45.135Z
|
|
197
197
|
</div>
|
|
198
198
|
<script src="../../prettify.js"></script>
|
|
199
199
|
<script>
|
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
117
117
|
Code coverage generated by
|
|
118
118
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
119
|
-
at 2024-01-
|
|
119
|
+
at 2024-01-16T17:40:45.135Z
|
|
120
120
|
</div>
|
|
121
121
|
<script src="../../prettify.js"></script>
|
|
122
122
|
<script>
|
|
@@ -574,7 +574,7 @@ export function getTraffic(
|
|
|
574
574
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
575
575
|
Code coverage generated by
|
|
576
576
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
577
|
-
at 2024-01-
|
|
577
|
+
at 2024-01-16T17:40:45.135Z
|
|
578
578
|
</div>
|
|
579
579
|
<script src="../../prettify.js"></script>
|
|
580
580
|
<script>
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
143
143
|
Code coverage generated by
|
|
144
144
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
145
|
-
at 2024-01-
|
|
145
|
+
at 2024-01-16T17:40:45.135Z
|
|
146
146
|
</div>
|
|
147
147
|
<script src="../../prettify.js"></script>
|
|
148
148
|
<script>
|
|
@@ -23,30 +23,30 @@
|
|
|
23
23
|
<div class='clearfix'>
|
|
24
24
|
|
|
25
25
|
<div class='fl pad1y space-right2'>
|
|
26
|
-
<span class="strong">
|
|
26
|
+
<span class="strong">36.78% </span>
|
|
27
27
|
<span class="quiet">Statements</span>
|
|
28
|
-
<span class='fraction'>
|
|
28
|
+
<span class='fraction'>32/87</span>
|
|
29
29
|
</div>
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
<div class='fl pad1y space-right2'>
|
|
33
|
-
<span class="strong">
|
|
33
|
+
<span class="strong">35.29% </span>
|
|
34
34
|
<span class="quiet">Branches</span>
|
|
35
|
-
<span class='fraction'>
|
|
35
|
+
<span class='fraction'>12/34</span>
|
|
36
36
|
</div>
|
|
37
37
|
|
|
38
38
|
|
|
39
39
|
<div class='fl pad1y space-right2'>
|
|
40
|
-
<span class="strong">
|
|
40
|
+
<span class="strong">27.27% </span>
|
|
41
41
|
<span class="quiet">Functions</span>
|
|
42
|
-
<span class='fraction'>
|
|
42
|
+
<span class='fraction'>3/11</span>
|
|
43
43
|
</div>
|
|
44
44
|
|
|
45
45
|
|
|
46
46
|
<div class='fl pad1y space-right2'>
|
|
47
|
-
<span class="strong">
|
|
47
|
+
<span class="strong">37.34% </span>
|
|
48
48
|
<span class="quiet">Lines</span>
|
|
49
|
-
<span class='fraction'>
|
|
49
|
+
<span class='fraction'>31/83</span>
|
|
50
50
|
</div>
|
|
51
51
|
|
|
52
52
|
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
</div>
|
|
62
62
|
</template>
|
|
63
63
|
</div>
|
|
64
|
-
<div class='status-line
|
|
64
|
+
<div class='status-line low'></div>
|
|
65
65
|
<div class="pad1">
|
|
66
66
|
<table class="coverage-summary">
|
|
67
67
|
<thead>
|
|
@@ -93,6 +93,21 @@
|
|
|
93
93
|
<td data-value="13" class="abs high">12/13</td>
|
|
94
94
|
</tr>
|
|
95
95
|
|
|
96
|
+
<tr>
|
|
97
|
+
<td class="file low" data-value="matrix.ts"><a href="matrix.ts.html">matrix.ts</a></td>
|
|
98
|
+
<td data-value="27.02" class="pic low">
|
|
99
|
+
<div class="chart"><div class="cover-fill" style="width: 27%"></div><div class="cover-empty" style="width: 73%"></div></div>
|
|
100
|
+
</td>
|
|
101
|
+
<td data-value="27.02" class="pct low">27.02%</td>
|
|
102
|
+
<td data-value="74" class="abs low">20/74</td>
|
|
103
|
+
<td data-value="12.5" class="pct low">12.5%</td>
|
|
104
|
+
<td data-value="24" class="abs low">3/24</td>
|
|
105
|
+
<td data-value="20" class="pct low">20%</td>
|
|
106
|
+
<td data-value="10" class="abs low">2/10</td>
|
|
107
|
+
<td data-value="27.14" class="pct low">27.14%</td>
|
|
108
|
+
<td data-value="70" class="abs low">19/70</td>
|
|
109
|
+
</tr>
|
|
110
|
+
|
|
96
111
|
</tbody>
|
|
97
112
|
</table>
|
|
98
113
|
</div>
|
|
@@ -101,7 +116,7 @@
|
|
|
101
116
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
102
117
|
Code coverage generated by
|
|
103
118
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
104
|
-
at 2024-01-
|
|
119
|
+
at 2024-01-16T17:40:45.135Z
|
|
105
120
|
</div>
|
|
106
121
|
<script src="../../prettify.js"></script>
|
|
107
122
|
<script>
|