This commit is contained in:
Juergen Kunz
2025-07-18 10:34:33 +00:00
parent 193524f15c
commit bf98296772
3 changed files with 9 additions and 4 deletions

View File

@@ -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"
}

3
pnpm-lock.yaml generated
View File

@@ -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)

View File

@@ -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();