From bf982967723b0c87ed66e5154516aaa1ac184a52 Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Fri, 18 Jul 2025 10:34:33 +0000 Subject: [PATCH] update --- package.json | 6 ++++-- pnpm-lock.yaml | 3 +++ test/test.ts | 4 ++-- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index bdbe31b..3510d2f 100644 --- a/package.json +++ b/package.json @@ -8,11 +8,12 @@ "author": "Lossless GmbH", "license": "MIT", "scripts": { - "test": "(tstest test/)", + "test": "(tstest test/ --verbose)", "build": "(tsbuild --web)" }, "devDependencies": { "@git.zone/tsbuild": "^2.6.4", + "@git.zone/tsrun": "^1.3.3", "@git.zone/tstest": "^2.3.1", "@push.rocks/qenv": "^6.1.0", "@push.rocks/tapbundle": "^6.0.3", @@ -39,5 +40,6 @@ ], "browserslist": [ "last 1 chrome versions" - ] + ], + "packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 00f8a37..8b38d03 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -27,6 +27,9 @@ importers: '@git.zone/tsbuild': specifier: ^2.6.4 version: 2.6.4 + '@git.zone/tsrun': + specifier: ^1.3.3 + version: 1.3.3 '@git.zone/tstest': specifier: ^2.3.1 version: 2.3.1(@aws-sdk/credential-providers@3.848.0)(socks@2.8.6)(typescript@5.8.3) diff --git a/test/test.ts b/test/test.ts index d12d668..f5943da 100644 --- a/test/test.ts +++ b/test/test.ts @@ -3,7 +3,7 @@ import { Qenv } from '@push.rocks/qenv'; const testQenv = new Qenv('./', './.nogit/'); -import * as bunq from '../ts'; +import * as bunq from '../ts/index.js'; let testBunqAccount: bunq.BunqAccount; let sandboxApiKey: string; @@ -135,4 +135,4 @@ tap.test('should stop the instance', async () => { console.log('bunq client stopped successfully'); }); -tap.start(); +export default tap.start();