I want to integrate serenity reports for my tests built using protractor-jsamine framework. All the exploration done only shows results for serenity integration with protractor-cucmber framework. Below is my config file sample. What should i add to integrate with Serenity reports. Currently i am using jasmine reporter.
config = {
framework: 'jasmine2',
seleniumAddress: 'http://localhost:4444/wd/hub',
specs: ['specs7.js'],
jasmineNodeOpts: {
defaultTimeoutInterval: 50000,
}
capabilities: {
'browserName': 'firefox'},
onPrepare: function() {
jasmine.getEnv().addReporter(reporter);
}
}
Serenity/JS doesn't support Jasmine test runner (yet). However, it supports Mocha, which is a great alternative to Jasmine.