@@ -34,7 +34,12 @@ function mapOf(rows: StatusRow[]): LiveStatusMap {
3434
3535const makeIntegration = (
3636 slug : string ,
37- demos : Array < { id : string ; name : string ; description : string ; tags : string [ ] } > = [ ] ,
37+ demos : Array < {
38+ id : string ;
39+ name : string ;
40+ description : string ;
41+ tags : string [ ] ;
42+ } > = [ ] ,
3843) : Integration => ( {
3944 slug,
4045 name : slug ,
@@ -63,7 +68,12 @@ describe("LevelStrip", () => {
6368
6469 it ( "shows green tone when dimension rows are green" , ( ) => {
6570 const integration = makeIntegration ( "test" , [
66- { id : "tool-rendering" , name : "Tool Rendering" , description : "" , tags : [ ] } ,
71+ {
72+ id : "tool-rendering" ,
73+ name : "Tool Rendering" ,
74+ description : "" ,
75+ tags : [ ] ,
76+ } ,
6777 ] ) ;
6878 const live = mapOf ( [
6979 row ( "health:test" , "health" , "green" ) ,
@@ -118,7 +128,12 @@ describe("LevelStrip", () => {
118128
119129 it ( "Tools badge shows real state when integration has tool-rendering demo" , ( ) => {
120130 const integration = makeIntegration ( "test" , [
121- { id : "tool-rendering" , name : "Tool Rendering" , description : "" , tags : [ ] } ,
131+ {
132+ id : "tool-rendering" ,
133+ name : "Tool Rendering" ,
134+ description : "" ,
135+ tags : [ ] ,
136+ } ,
122137 ] ) ;
123138 const live = mapOf ( [ row ( "tools:test" , "tools" , "green" ) ] ) ;
124139 const { getByTestId } = render (
0 commit comments