Formatting and adapting version.

This commit is contained in:
Martin Karkowski 2022-04-08 09:35:02 +02:00
parent f4d0460ec2
commit 2afbdb5a53
3 changed files with 4 additions and 6 deletions

View File

@ -197,14 +197,12 @@ describe("NopeConnectivityManager", function () {
first.dispose(true); first.dispose(true);
expect(end - adapted).to.be.equal(0, "There should not be an delta."); expect(end - adapted).to.be.equal(0, "There should not be an delta.");
}); });
it("master", async () => { it("master", async () => {
// Wait for the Handshake // Wait for the Handshake
await sleep(10); await sleep(10);
assert(first.isMaster, "First should be master"); assert(first.isMaster, "First should be master");
// Create the second Element. // Create the second Element.

View File

@ -21,7 +21,7 @@ import {
INopeINopeConnectivityOptions, INopeINopeConnectivityOptions,
INopeINopeConnectivityTimeOptions, INopeINopeConnectivityTimeOptions,
INopeObservable, INopeObservable,
INopeStatusInfo INopeStatusInfo,
} from "../../types/nope"; } from "../../types/nope";
// Chached Moduls, which will be loaded in nodejs // Chached Moduls, which will be loaded in nodejs
@ -377,7 +377,7 @@ export class NopeConnectivityManager implements INopeConnectivityManager {
} }
// Say Hello by sending the Status // Say Hello by sending the Status
_this._sendStatus() _this._sendStatus();
} }
}); });

View File

@ -1,6 +1,6 @@
{ {
"name": "nope", "name": "nope",
"version": "1.0.33", "version": "1.0.34",
"description": "NoPE Runtime for Nodejs. For Browser-Support please use nope-browser", "description": "NoPE Runtime for Nodejs. For Browser-Support please use nope-browser",
"files": [ "files": [
"dist-nodejs/**/*", "dist-nodejs/**/*",