From 84c6a599ac8fae02206a281fff4455214a107425 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Fri, 16 Apr 2021 20:28:49 +0000 Subject: [PATCH] fix(core): update --- test/test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/test.ts b/test/test.ts index 3eea9ff..8ddf677 100644 --- a/test/test.ts +++ b/test/test.ts @@ -6,8 +6,9 @@ interface ITestTransaction { amount: number; } -tap.test('first test', async () => { +tap.test('implement test csv parser', async () => { class MyCsvParser extends finplusInterfaces.AcCsvParser { + paymentProviderName: 'bunq'; public transactionArray: ITestTransaction[] = []; public async getTransactions(): Promise { return this.transactionArray;