Skip to content

Commit

Permalink
Update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
GermanBluefox committed Sep 25, 2023
1 parent 18d5820 commit bb7d863
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
"@alcalzone/release-script": "^3.6.0",
"@alcalzone/release-script-plugin-iobroker": "^3.6.0",
"@alcalzone/release-script-plugin-license": "^3.5.9",
"@iobroker/legacy-testing": "^0.3.7",
"axios": "^1.4.0",
"@iobroker/legacy-testing": "^1.0.0",
"axios": "^1.5.0",
"mqtt": "^4.3.7",
"gulp": "^4.0.2",
"mocha": "^10.2.0",
"chai": "^4.3.7"
"chai": "^4.3.8"
},
"bugs": {
"url": "https://github.com/ioBroker/ioBroker.sonoff/issues"
Expand Down
6 changes: 3 additions & 3 deletions test/testServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ function startClients(_done) {
// start mqtt client
const MqttClient = require('./lib/mqttClient.js');

// Start client to emit topics
// Start a client to emit topics
mqttClientEmitter = new MqttClient(connected => {
// on connected
if (connected) {
Expand All @@ -82,7 +82,7 @@ function startClients(_done) {
lastReceivedMessage1 = message ? message.toString() : null;
}, {name: 'Emitter*1', user: 'user', pass: 'pass1'});

// Start client to receive topics
// Start another client to receive topics
mqttClientDetector = new MqttClient(connected => {
// on connected
if (connected) {
Expand Down Expand Up @@ -201,7 +201,7 @@ function checkConnection(value, done, counter) {

describe('Sonoff server: Test mqtt server', () => {
before('Sonoff server: Start js-controller', function (_done) { //
this.timeout(600000); // because of first install from npm
this.timeout(600000); // because of the first installation from npm
setup.adapterStarted = false;

setup.setupController(async () => {
Expand Down

0 comments on commit bb7d863

Please sign in to comment.