fix(core): update

This commit is contained in:
2022-02-19 11:43:10 +01:00
parent 570a1cd6b2
commit 2433b0d7b2
3 changed files with 29 additions and 20 deletions

View File

@ -19,8 +19,11 @@ tap.test('should report tink as healthy', async () => {
await expectAsync(tinkTestAccount.getTinkHealthyBoolean()).toBeTrue();
});
tap.test('should create a valid request', async () => {
await tinkTestAccount.createTinkUser("user_1234_abc");
tap.test('should create a valid request', async (toolsArg) => {
const tinkuser = await tinkTestAccount.createTinkUser("user_1234_abc");
console.log(await tinkuser.getTinkLink());
process.exit(0);
await toolsArg.delayFor(10000);
})
tap.test('should delete existing users', async () => {