fix(core): update

This commit is contained in:
2020-10-15 10:33:47 +00:00
parent 8964f0d228
commit eba9086c8b
6 changed files with 85 additions and 5 deletions

View File

@ -1,8 +1,14 @@
import { expect, tap } from '@pushrocks/tapbundle';
import * as qenv from '@pushrocks/qenv';
const testQenv = new qenv.Qenv('.', './.nogit');
import * as paddle from '../ts/index';
tap.test('first test', async () => {
console.log(paddle.standardExport);
let testPaddleAccount: paddle.PaddleAccount;
tap.test('should create a paddle account', async () => {
testPaddleAccount = new paddle.PaddleAccount(testQenv.getEnvVarOnDemand('PADDLE_APIKEY'));
});
tap.start();