test('Event listeners registered with .onerror should be called with an error argument', function(done) {
    pws = new PersistentWS('ws://localhost:1234/');
    
    pws.onerror = function(e) {
      assert.strictEqual(typeof e, 'object');