diff --git a/test/test.ts b/test/test.ts index 783ef2d..f53a989 100644 --- a/test/test.ts +++ b/test/test.ts @@ -9,8 +9,8 @@ let testSmartlogReceiver: smartlogDestinationReceiver.SmartlogDestinationReceive tap.test('should create a valid SmartlogDestinationReceiver', async () => { testSmartlogReceiver = new smartlogDestinationReceiver.SmartlogDestinationReceiver({ - receiverEndpoint: testQenv.getEnvVarOnDemand('RECEIVER_ENDPOINT'), - passphrase: testQenv.getEnvVarOnDemand('PASSPHRASE'), + receiverEndpoint: await testQenv.getEnvVarOnDemand('RECEIVER_ENDPOINT'), + passphrase: await testQenv.getEnvVarOnDemand('PASSPHRASE'), }); }); diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 126f9d4..cb0c6af 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/smartlog-destination-receiver', - version: '2.0.5', + version: '2.0.6', description: 'A package providing a destination handler for smartlog logging packages' }