I have been looking for a way to add more data to my test-report that gets generated using protractor for e2e-tests.
Looking through the DOCS of jasmine I found something that seems to fit the description
/**
* Sets a user-defined property that will be provided to reporters as
* part of the properties field of SpecResult.
* @since 3.6.0
*/
declare function setSpecProperty(key: string, value: unknown): void;
However I cannot find any examples on how to implement this. Does anyone have a working example and if this is even the correct thing I am looking for?