1
0

disconnect.spec.js 318 B

123456789101112
  1. /* Import modules. */
  2. const Nito = require('..')
  3. describe('Disconnection evaluation', () => {
  4. test('it should report the current connection status', () => {
  5. /* Initialize Nito Exchange Cloud. */
  6. const nec = new Nito()
  7. /* Run test. */
  8. expect(nec.disconnect()).toEqual(0)
  9. })
  10. })