UNPKG

netdde

Version:

A JavaScript implementation of the NetDDE protocol

20 lines (15 loc) 456 B
//@ts-check /* Copyright: (c) 2019, Guilherme Francescon Cittolin <gfcittolin@gmail.com> GNU General Public License v3.0+ (see LICENSE or https://www.gnu.org/licenses/gpl-3.0.txt) */ const { expect } = require('chai'); const { Duplex } = require('stream'); const NetDDEClient = require('../../src/client/client'); const C = require('../../src/constants'); function createFakeSocket() { //TODO } describe('NetDDE Client', () => { //TODO });