Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
4978a2c272 | |||
a36f9634ce | |||
f241956743 | |||
c40526c16c | |||
945b69a659 | |||
0438e5d792 | |||
7e85acd404 | |||
ecdf7e46cc |
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@mojoio/bunq",
|
||||
"version": "1.0.5",
|
||||
"version": "1.0.10",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@mojoio/bunq",
|
||||
"version": "1.0.5",
|
||||
"version": "1.0.10",
|
||||
"private": false,
|
||||
"description": "a bunq api abstraction package",
|
||||
"main": "dist/index.js",
|
||||
@ -9,7 +9,7 @@
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"test": "(tstest test/)",
|
||||
"build": "(tsbuild)",
|
||||
"build": "(tsbuild --web)",
|
||||
"format": "(gitzone format)"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -5,11 +5,15 @@ const testQenv = new Qenv('./', './.nogit/');
|
||||
|
||||
import * as bunq from '../ts';
|
||||
|
||||
if (process.env.CI) {
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
let testBunqAccount: bunq.BunqAccount;
|
||||
const testBunqOptions: bunq.IBunqConstructorOptions = {
|
||||
apiKey: testQenv.getEnvVarOnDemand('BUNQ_APIKEY'),
|
||||
deviceName: 'mojoiobunqpackage',
|
||||
environment: 'PRODUCTION'
|
||||
environment: 'SANDBOX'
|
||||
};
|
||||
|
||||
tap.test('should create a valid bunq account', async () => {
|
||||
|
Reference in New Issue
Block a user