fix(core): update

This commit is contained in:
Philipp Kunz 2020-06-07 12:33:36 +00:00
parent 390a43ead7
commit 3a68562354
2 changed files with 5 additions and 5 deletions

View File

@ -9,7 +9,7 @@
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
"test": "(tstest test/)", "test": "(tstest test/)",
"build": "(tsbuild)", "build": "(tsbuild --web)",
"format": "(gitzone format)" "format": "(gitzone format)"
}, },
"devDependencies": { "devDependencies": {
@ -38,4 +38,4 @@
"npmextra.json", "npmextra.json",
"readme.md" "readme.md"
] ]
} }

View File

@ -9,8 +9,8 @@ let testSmartlogReceiver: smartlogDestinationReceiver.SmartlogDestinationReceive
tap.test('should create a valid SmartlogDestinationReceiver', async () => { tap.test('should create a valid SmartlogDestinationReceiver', async () => {
testSmartlogReceiver = new smartlogDestinationReceiver.SmartlogDestinationReceiver({ testSmartlogReceiver = new smartlogDestinationReceiver.SmartlogDestinationReceiver({
receiverEndpoint: testQenv.getEnvVarOnDemand("RECEIVER_ENDPOINT"), receiverEndpoint: testQenv.getEnvVarOnDemand('RECEIVER_ENDPOINT'),
passphrase: testQenv.getEnvVarOnDemand("PASSPHRASE") passphrase: testQenv.getEnvVarOnDemand('PASSPHRASE')
}); });
}); });
@ -31,7 +31,7 @@ tap.test('should send a valid message', async () => {
id: '123', id: '123',
type: 'none' type: 'none'
}, },
message: 'This is a message', message: 'This is a message'
}); });
}); });