aboutsummaryrefslogtreecommitdiff
path: root/tests/simple.test.ts
diff options
context:
space:
mode:
authorBobby <[email protected]>2022-01-28 17:16:01 -0500
committerBobby <[email protected]>2022-01-28 17:16:01 -0500
commit6645a8a8ddcbc46b20f1c662ee259da3315e8d51 (patch)
treee9e6fb2ca04579eed00479272d6b758cf32aeb15 /tests/simple.test.ts
parent3e84c49170fc99a692ce8874d7f1545747919986 (diff)
downloadizuku.js-6645a8a8ddcbc46b20f1c662ee259da3315e8d51.tar.xz
izuku.js-6645a8a8ddcbc46b20f1c662ee259da3315e8d51.zip
feat: showAll function and fix sort method
Diffstat (limited to 'tests/simple.test.ts')
-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 24e0126..b813a6e 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.title('Simple Frame').sort(3).show();
+ frame.title('Simple Frame').sort(1).showAll();
});
});