File tree 1 file changed +19
-0
lines changed
1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ import consoleTable from "../src/extras/consoleTable";
9
9
import slicedownResult from "./fixtures/slicedownResult" ;
10
10
import consoleOrderedList from "../src/extras/consoleOrderedList" ;
11
11
import examples from "./examples" ;
12
+ import ii from "../src/inspect/ii" ;
13
+ import tt from "../src/inspect/tt" ;
12
14
13
15
function inspect ( value : unknown , options ?: ConsoleInspectOptions ) : unknown {
14
16
console . log ( value ) ;
@@ -374,3 +376,20 @@ examples.make(() => {
374
376
depth : 5 ,
375
377
} ) ;
376
378
} ) ;
379
+
380
+ examples . make ( ( ) => {
381
+ ii ( "empty strings" , "" , " " ) ;
382
+ } ) ;
383
+
384
+ examples . make ( ( ) => {
385
+ tt (
386
+ [
387
+ { type : "folder" , name : "notes " } ,
388
+ { type : "file" , name : "todo.md" } ,
389
+ ] ,
390
+ [
391
+ { type : "folder" , name : "notes " } ,
392
+ { type : "file" , name : "meditation.md" } ,
393
+ ] ,
394
+ ) ;
395
+ } ) ;
You can’t perform that action at this time.
0 commit comments