Update cspell dictionary

This commit is contained in:
Thomas Nordquist
2019-06-18 23:19:29 +02:00
parent 68118248c9
commit 7e99c18410
2 changed files with 46 additions and 8 deletions

View File

@@ -12,8 +12,8 @@ function startServer(): Promise<mqtt.MqttClient> {
function connectMqtt(): Promise<mqtt.MqttClient> {
return new Promise(resolve => {
const client = mqtt.connect('mqtt://127.0.0.1:1883', {
username: 'thomas',
password: 'bierbier',
username: '',
password: '',
})
client.once('connect', () => {
resolve(client)