Skip to content

Commit

Permalink
fix: revert mochawesome to false by default (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
fengmk2 committed Dec 17, 2022
1 parent b493811 commit 9c48e10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ You can pass any mocha argv.
- `--parallel` enable mocha parallel mode, default to `false`.
- `--auto-agent` auto start agent in mocha master agent.
- `--jobs` number of jobs to run in parallel, default to `os.cpus().length - 1`.
- `--mochawesome` enable [mochawesome](https://github.com/adamgruber/mochawesome) reporter, default to `true`.
- `--mochawesome` enable [mochawesome](https://github.com/adamgruber/mochawesome) reporter, default to `false`.
- see more at <https://mochajs.org/#usage>

#### environment
Expand Down
2 changes: 1 addition & 1 deletion lib/cmd/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class TestCommand extends Command {
mochawesome: {
type: 'boolean',
description: 'enable mochawesome reporter',
default: true,
default: false,
},
};
}
Expand Down

0 comments on commit 9c48e10

Please sign in to comment.