aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBobby <[email protected]>2022-01-28 16:54:18 -0500
committerBobby <[email protected]>2022-01-28 16:54:18 -0500
commit5aeab5e6a0e71c6a3e8ddfb02c481dac731148de (patch)
tree365aba209616d46d33f73b6e4c9743d2e16e54b1 /tests
parentfae750e3027a6377e9de8dafe278efce4d262df4 (diff)
downloadizuku.js-5aeab5e6a0e71c6a3e8ddfb02c481dac731148de.tar.xz
izuku.js-5aeab5e6a0e71c6a3e8ddfb02c481dac731148de.zip
feat: function to save to CSV
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 8957d11..744be1c 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').toJSON(undefined, 'hello');
+ frame.title('Simple Frame').toCSV(undefined, 'hello');
});
});