paddle/test/test.ts

15 lines
398 B
TypeScript
Raw Permalink Normal View History

2020-10-15 08:59:52 +00:00
import { expect, tap } from '@pushrocks/tapbundle';
2020-10-15 10:33:47 +00:00
import * as qenv from '@pushrocks/qenv';
const testQenv = new qenv.Qenv('.', './.nogit');
2020-10-15 08:59:52 +00:00
import * as paddle from '../ts/index';
2020-10-15 10:33:47 +00:00
let testPaddleAccount: paddle.PaddleAccount;
tap.test('should create a paddle account', async () => {
testPaddleAccount = new paddle.PaddleAccount(testQenv.getEnvVarOnDemand('PADDLE_APIKEY'));
2020-10-15 08:59:52 +00:00
});
tap.start();