aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBobby <[email protected]>2022-01-26 14:24:20 -0500
committerBobby <[email protected]>2022-01-26 14:24:20 -0500
commit228960a756ec4417d5337eaacfffb9212eca2399 (patch)
tree7e512f1bee99897818c5db14b29c48663b9cabd1 /tests
parent8953cdd7fae112688ec31945f4257bcfb16e82b0 (diff)
downloadizuku.js-228960a756ec4417d5337eaacfffb9212eca2399.tar.xz
izuku.js-228960a756ec4417d5337eaacfffb9212eca2399.zip
feat: add title to table
Diffstat (limited to 'tests')
-rw-r--r--tests/simple.test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/simple.test.ts b/tests/simple.test.ts
index fa2167f..dffde21 100644
--- a/tests/simple.test.ts
+++ b/tests/simple.test.ts
@@ -5,6 +5,6 @@ const frame = new Frame(data, header);
describe('Print a frame', () => {
it('should print a frame', () => {
- frame.show();
+ frame.title('Simple Frame').show();
});
});