aboutsummaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorBobby <[email protected]>2022-01-26 14:32:14 -0500
committerBobby <[email protected]>2022-01-26 14:32:14 -0500
commit71a47064e453e59973dfc67be1915a4395c97bec (patch)
treeb06d16c5211167aed5c27def0844e41215b9e6f1 /src/lib
parent441083bfe0b88073bc2745ef0d84dbeb6902b854 (diff)
downloadizuku.js-71a47064e453e59973dfc67be1915a4395c97bec.tar.xz
izuku.js-71a47064e453e59973dfc67be1915a4395c97bec.zip
fix: fix tests
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/info.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/info.ts b/src/lib/info.ts
index 98a6249..f194ebc 100644
--- a/src/lib/info.ts
+++ b/src/lib/info.ts
@@ -74,7 +74,10 @@ export function info(this: Frame): void {
.split(' x ')[1]
.trim()} columns`
);
- displayTable(info);
+ displayTable({
+ data: info,
+ title: this.tableTitle
+ });
console.log(`Data Types: ${dataTypesString}`);
console.log(`Memory Usage: ${sizeof(this)} bytes`);
}