Plugins to profile another plugins of Testplane.
UI for this plugin hermione-profiler-ui.
Installation:
npm i -D @testplane/plugins-profiler
.testplane.conf.js:
// ...
plugins: {
"@testplane/plugins-profiler": {
enabled: true,
reportPath: "path_to_report" // default - "./plugins-profiler"
}
}
To run test:
npm run test
To run test in watch-mode:
npm run test -- --watchAll
To run linters:
npm run lint
To fix problems:
npm run fix
To commit changes use commands below:
git add .
npm run commit # to commit changes in interactive mode
npm run release
And follow instructions.