From 9f4413b05094222cdd80617ad8deb14ffc9df5e4 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 5 Jul 2025 10:01:11 +0200 Subject: [PATCH] Feature/add test file with invalid type (#5091) * Add test file with invalid type --- test/import/not-ok/invalid-type.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 test/import/not-ok/invalid-type.json diff --git a/test/import/not-ok/invalid-type.json b/test/import/not-ok/invalid-type.json new file mode 100644 index 000000000..a23f72411 --- /dev/null +++ b/test/import/not-ok/invalid-type.json @@ -0,0 +1,18 @@ +{ + "meta": { + "date": "2021-01-01T00:00:00.000Z", + "version": "dev" + }, + "activities": [ + { + "currency": "USD", + "dataSource": "YAHOO", + "date": "2021-01-01T00:00:00.000Z", + "fee": 0, + "quantity": 20, + "symbol": "AAPL", + "type": "", + "unitPrice": 100.0 + } + ] +}