File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed
packages/compatibility/src/utils Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,9 @@ class MarkdownFile {
92
92
93
93
addFrameworkResultToTable ( result : TestResultDetails ) {
94
94
const name = result . fullName || result . name ;
95
- this . content . push ( `<tr><th colspan="3"><big><a href="${ result . documentation } ">${ name } </a></big></th></tr>` )
95
+ this . content . push (
96
+ `<tr><th colspan="3"><big><a href="${ result . documentation } ">${ name } </a></big></th></tr>` ,
97
+ ) ;
96
98
97
99
const columns = [
98
100
this . renderSubgraphDetailsCell ( result ) ,
@@ -124,7 +126,7 @@ class MarkdownFile {
124
126
let content = `${ result . description } </br></br>` ;
125
127
126
128
if ( result . repository ?. link ) {
127
- const starCount = Number ( result . stargazerCount )
129
+ const starCount = Number ( result . stargazerCount ) ;
128
130
let stars = null ;
129
131
if ( starCount > 1000 ) {
130
132
stars = `${ ( starCount / 1000 ) . toFixed ( 1 ) } k` ;
@@ -160,12 +162,13 @@ Last Release: ${lastReleaseDate}</br></br>`;
160
162
let cell = '<table>' ;
161
163
TESTS . forEach ( ( test ) => {
162
164
if ( test . fedVersion === fedVersion ) {
163
- cell += `<tr><th><code>${ test . column } </code></th><td>${ testResults [ test . assertion ] ?. success
164
- ? '🟢'
165
- : test . required
165
+ cell += `<tr><th><code>${ test . column } </code></th><td>${
166
+ testResults [ test . assertion ] ?. success
167
+ ? '🟢'
168
+ : test . required
166
169
? '❌'
167
170
: '🔲'
168
- } </td></tr>`;
171
+ } </td></tr>`;
169
172
}
170
173
} ) ;
171
174
cell += '</table>' ;
You can’t perform that action at this time.
0 commit comments