ircanywhere / irc-factory

A rebuilt irc-factory from simple-irc-socket and irc-message. Get support at #ircanywhere on freenode
https://ircanywhere.com
MIT License
60 stars 14 forks source link

Switch broken tests to xdescribe #21

Closed rodms10 closed 10 years ago

rodms10 commented 10 years ago

This will mark tests in broken.js as pending, allowing npm test to run to the end.

rodms10 commented 10 years ago

Cool, with this change travis uncovered 3 test failures when using node 11.

rodms10 commented 10 years ago

It broke because Buffer._charsWritten was removed from node in v0.11. Not sure how to fix yet.

rodms10 commented 10 years ago

Fixed by calling .toString() on the written buffer then checking it's length.