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: 10 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 6 years ago)
- Default Branch: master
- Last Pushed: 2025-01-21T18:32:31.000Z (11 months ago)
- Last Synced: 2025-02-26T12:04:47.726Z (10 months ago)
- Topics: testplane-plugin
- Language: TypeScript
- Homepage:
- Size: 52.3 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.