Cucumber Message Streams
This module contains stream utilities to read/write Cucumber Message objects to/from streams.
Streams for reading/writing messages
This module contains stream utilities to read/write Cucumber Message objects to/from streams.
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
@cucumber/messages
is now a peer dependency. You have to add @cucumber/messages
in your dependencies:{
"dependencies": {
+ "@cucumber/messages": "17.1.1",
"@cucumber/message-streams": "4.0.0",
}
}
NdjsonToMessageStream
constructor accepts an optional function for parsing
a line, which may return null if a line is ignored. This can be used to improve performance
by ignoring certain lines.