1.0.11 • Published 4 years ago

@aquality-automation/aquality-tracking-reporter-jasmine v1.0.11

Weekly downloads
-
License
ISC
Repository
github
Last release
4 years ago

Jasmine Aquality Tracker Plugin

A plugin to send test results to Aquality Tracking

Installing

npm i @aquality-automation/aquality-tracking-reporter-jasmine

Using Aquality Tracker Plugin in Jasmine

// conf.js
const AqualityReporter = require('@aquality-automation/aquality-tracking-reporter-jasmine');
jasmine.getEnv().addReporter(new AqualityReporter({
            token: ${your_api_token},
            api_url: ${your_api_url},
            project_id: ${your_project_id},
            testrun_id: ${testrun_id_for_results}
        }));

Using Aquality Tracker Plugin in Protractor

// conf.js
exports.config = {
  framework: 'jasmine',
  onPrepare: function() {
    const AqualityReporter = require('@aquality-automation/aquality-tracking-reporter-jasmine');
    jasmine.getEnv().addReporter(new AqualityReporter({
            token: ${your_api_token},
            api_url: ${your_api_url},
            project_id: ${your_project_id},
            testrun_id: ${testrun_id_for_results}
        }));
  }
}

Using Aquality Tracker Cli to start and finish testruns

To start test run use:

aqualityReporter start ${your_api_url} ${your_project_id} ${your_api_token} ${suite name} ${environment} ${build_name}

To finish test run use:

aqualityReporter finish ${your_api_url} ${your_project_id} ${your_api_token} ${testrun id}
1.0.11

4 years ago

1.0.10

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago