3.1.0 • Published 5 months ago

testcafe-reporter-report-portal-reporter v3.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

Report Portal reporter for TestCafe

This is the report-portal reporter plugin for TestCafe.

Build Status

Features

  • preserves testcafe features -> tests structure in report portal
  • the only report portal plugin that supports concurrency
  • supports sending screenshots and videos recoded by testcafe to report portal
  • test metadata (string or array) is propagated to report portal and can be used to build effective dashboards
  • propagates actual test and fixture execution time to report portal (see note)
  • supports quarantine mode (adds multiple screenshots and one video containing all attempts)

Note

When running tests using concurrency > 1 testcafe hook reportTestDone is called for all tests at the same time after last test finishes. This causes all tests from that fixture to have the exact same execution time.

Prerequisite

In order to use Report Portal plugin for testcafe, Report Portal need to installed first. Follow setup in official docs for installation instructions.

Install

npm install testcafe-reporter-report-portal-reporter

Setup

Once installed add required env variables to use the plugin. Good idea is to use env-cmd or dot-env to simplify the setup.

RequiredArgumentDescriptionExample
YesREPORT_PORTAL_BASE_URLurl of report portal instance including protocol and porthttp://<IP_ADDRESS>:8080
YesREPORT_PORTAL_TOKENcan be taken from report portal -> user profile -> access tokend19fb675-5ebc-4104-a6c7-fc44e18d27de
YesREPORT_PORTAL_PROJECT_NAMEneed to match project name in report portalsuperadmin_personal
YesREPORT_PORTAL_LAUNCH_NAMEName that identifies this test runSanity
NoREPORT_PORTAL_DESCRIPTIONadditional information about the launchSome custom description

Usage

When you run tests from the command line, specify the reporter name by using the --reporter option:

testcafe chrome 'path/to/test/file.js' --reporter report-portal-reporter

When you use API, pass the reporter name to the reporter() method:

testCafe
    .createRunner()
    .src('path/to/test/file.js')
    .browsers('chrome')
    .reporter('report-portal-reporter') // <-
    .run();

Example

See example folder for real working example based on report portal demo instance available under https://demo.reportportal.io. Run the example using:

npm run example

Author

Rafal Szczepankiewicz

3.1.0

5 months ago

3.0.0

5 months ago

2.0.0

2 years ago

1.1.0

2 years ago

1.0.0

2 years ago

0.2.0

2 years ago

0.1.0

2 years ago