bitmessage-js/tests/functional.js

17 lines
450 B
JavaScript
Raw Normal View History

2015-02-02 15:30:05 +00:00
var bitmessage = require("../lib");
var structs = bitmessage.structs;
var message = structs.message;
2015-02-03 20:13:27 +00:00
var WsTransport = require("../lib/net/ws").Transport;
2015-02-02 15:30:05 +00:00
if (!process.browser) {
var TcpTransport = require("../lib/net/tcp").Transport;
describe("TCP transport", function() {
it("should allow to communicate between two nodes");
});
}
describe("WebSocket transport", function() {
it("should allow to communicate between two nodes");
});