it('echo should obtain session and key tokens and echo response', (done) => {
    const msg = {message: 'bar'};
    symphony.echo(msg)
      .then((response) => {
        assert.deepEqual(msg, response);