File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -102,24 +102,28 @@ describe("API Types", function () {
102102 describe ( "Generic types" , function ( ) {
103103 it ( "Exposes string[][] if columns is not specified" , function ( ) {
104104 const data : string [ ] [ ] = parse ( "" , { } ) ;
105+ data ;
105106 } ) ;
106107
107108 it ( "Exposes string[][] if columns is falsy" , function ( ) {
108109 const data : string [ ] [ ] = parse ( "" , {
109110 columns : false ,
110111 } ) ;
112+ data ;
111113 } ) ;
112114
113115 it ( "Exposes unknown[] if columns is specified as boolean" , function ( ) {
114116 const data : unknown [ ] = parse ( "" , {
115117 columns : true ,
116118 } ) ;
119+ data ;
117120 } ) ;
118121
119122 it ( "Exposes T[] if columns is specified" , function ( ) {
120123 const data : Person [ ] = parse < Person > ( "" , {
121124 columns : true ,
122125 } ) ;
126+ data ;
123127 } ) ;
124128 } ) ;
125129} ) ;
You can’t perform that action at this time.
0 commit comments