how to use Serenity/Js for protractor-Jasmine framework tests. Does serentiy support protractor jasmine framework

577 Views Asked by At

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);

     }
     }
1

There are 1 best solutions below

1
On BEST ANSWER

Serenity/JS doesn't support Jasmine test runner (yet). However, it supports Mocha, which is a great alternative to Jasmine.