From 3a68562354d90e0d1b7b6290e1017ee8952f7b72 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Sun, 7 Jun 2020 12:33:36 +0000 Subject: [PATCH] fix(core): update --- package.json | 4 ++-- test/test.ts | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 797f77b..cfb7cd9 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "license": "MIT", "scripts": { "test": "(tstest test/)", - "build": "(tsbuild)", + "build": "(tsbuild --web)", "format": "(gitzone format)" }, "devDependencies": { @@ -38,4 +38,4 @@ "npmextra.json", "readme.md" ] -} +} \ No newline at end of file diff --git a/test/test.ts b/test/test.ts index dedd95f..7b82189 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: testQenv.getEnvVarOnDemand('RECEIVER_ENDPOINT'), + passphrase: testQenv.getEnvVarOnDemand('PASSPHRASE') }); }); @@ -31,7 +31,7 @@ tap.test('should send a valid message', async () => { id: '123', type: 'none' }, - message: 'This is a message', + message: 'This is a message' }); });