1. testcafe-reporter-list
List TestCafe reporter plugin.
testcafe-reporter-list
Package: testcafe-reporter-list
Created by: DevExpress
Last modified: Mon, 04 Sep 2023 07:01:28 GMT
Version: 2.2.0
License: MIT
Downloads: 952,398
Repository: https://github.com/DevExpress/testcafe-reporter-list

Install

npm install testcafe-reporter-list
yarn add testcafe-reporter-list

testcafe-reporter-list

Build Status

This is the List reporter plugin for TestCafe.

preview

Install

This reporter is shipped with TestCafe by default. In most cases, you won't need to install it separately.

However, if you need to install this reporter, you can use the following command.

npm install testcafe-reporter-list

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 list

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

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

Author

Developer Express Inc. (https://devexpress.com)

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code