protractor-istanbul-plugin icon indicating copy to clipboard operation
protractor-istanbul-plugin copied to clipboard

Protractor plugin that collects istanbul coverage results from a page and dumps them to coverage.json files (one per spec).

Results 7 protractor-istanbul-plugin issues
Sort by recently updated
recently updated
newest added

Hi there, i just installed this plugin into my project and edited the protractor.conf.js per doc suggested. When i ran the e2e testing, there's no code coverage json files generated...

When we run the test in our environment, our test goes to multiple stacks which also uses same plugin and has this `__coverage__` variable so our coverage gets messed up....

I have used this example you have https://github.com/bennyhat/protractor-istanbul-plugin-example However my results show ``` ----------|----------|----------|----------|----------|----------------| File | % Stmts | % Branch | % Funcs | % Lines |Uncovered Lines |...

We're using protractor 4.0.2, Jasmine 2, and version 2.0.0 of protractor-istanbul-plugin. Tests pass on Chrome and even on Firefox when using a Linux or Mac. For some reason on Windows...

The plugin does not seem to respect the options passed here is my config: ``` json plugins: [{ "path": "./node_modules/protractor-istanbul-plugin", "outputPath": "coverage/e2e" }], ``` outputPath is style `coverage` the `options`...