contexttesting / zoroaster

A modern JavaScript testing framework for Node.js with support for test contexts and masks.
https://www.contexttesting.com
MIT License
5 stars 0 forks source link

does not catch errors when stream is returned #63

Closed zavr-1 closed 5 years ago

zavr-1 commented 5 years ago
  async '!places types declaration'({ typesLocation }) {
    const s = `/* documentary ${typesLocation} */

`
    const stream = new Typal()
    stream.end(s)
    return stream
  },