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",
"scripts": {
"test": "(tstest test/)",
"build": "(tsbuild)",
"build": "(tsbuild --web)",
"format": "(gitzone format)"
},
"devDependencies": {

View File

@ -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'
});
});