v2.0.0
This release contains BREAKING CHANGES. Tests based on ^1.0.0
will stop working properly from v2.0.0
onwards.
Changes
attribute
forEvent
has been replaced byattributes
. Nowattributes
pass to be an array ofAttribute
istead.isComplete
,isIncomplete
andisError
;Attribute
attributes are not valid anymore. They should be replaced byxcmOutcome: Complete
,xcmOutcome: Incomplete
andxcmOutcome: Error
How to migrate your tests
- Replace
attribute
byattributes
and make it an array in the YAML file - Replace
isComplete
,isIncomplete
andisError
attributes byxcmOutcome: Complete
,xcmOutcome: Incomplete
andxcmOutcome: Error
Features
- Capability to check more than one Event attribute.
- Added
result
attribute inEvent
to be able to check the whole Event result value.