Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gemini-testing/testplane-plugins-profiler
Tetsplane plugin to profile plugins
https://github.com/gemini-testing/testplane-plugins-profiler
testplane-plugin
Last synced: about 2 months ago
JSON representation
Tetsplane plugin to profile plugins
- Host: GitHub
- URL: https://github.com/gemini-testing/testplane-plugins-profiler
- Owner: gemini-testing
- License: mit
- Created: 2019-06-14T14:52:29.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-08T12:58:43.000Z (9 months ago)
- Last Synced: 2024-11-10T23:39:05.570Z (about 2 months ago)
- Topics: testplane-plugin
- Language: TypeScript
- Homepage:
- Size: 52.1 MB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
README
# @testplane/plugins-profiler
Plugins to profile another plugins of [Testplane](https://github.com/gemini-testing/testplane).
UI for this plugin [hermione-profiler-ui](https://github.com/gemini-testing/hermione-profiler-ui).
## Using
Installation:
```sh
npm i -D @testplane/plugins-profiler
```### Attach
**.testplane.conf.js:**
```js
// ...
plugins: {
"@testplane/plugins-profiler": {
enabled: true,
reportPath: "path_to_report" // default - "./plugins-profiler"
}
}
```## Development
### Tests
To run test:
```sh
npm run test
```To run test in watch-mode:
```sh
npm run test -- --watchAll
```### Linters
To run linters:
```sh
npm run lint
```To fix problems:
```sh
npm run fix
```## Release
### commit
To commit changes use commands below:
```sh
git add .
npm run commit # to commit changes in interactive mode
```### release
```sh
npm run release
```And follow instructions.