testcafe-reporter-spec

Spec TestCafe reporter plugin.

MIT 10 个版本
安装
npm install testcafe-reporter-spec
yarn add testcafe-reporter-spec
pnpm add testcafe-reporter-spec
bun add testcafe-reporter-spec
README

testcafe-reporter-spec

Build Status

This is the Spec 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-spec

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 spec

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

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

Author

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

版本列表
2.2.0 2023-04-04
2.1.1 2017-01-02
2.1.0 2017-01-02
2.0.0 2016-07-27
1.0.5 2016-07-07
1.0.4 2016-06-28
1.0.3 2016-06-28
1.0.2 2016-03-23
1.0.1 2016-03-23
1.0.0 2015-12-09