Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: cypress-io/code-coverage
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.0.5
Choose a base ref
...
head repository: cypress-io/code-coverage
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.0.0
Choose a head ref
  • 2 commits
  • 19 files changed
  • 2 contributors

Commits on Apr 6, 2020

  1. feat: set flag from plugins task that they were registered (#180)

    * feat: set flag from plugins task that they were registered
    
    BREAKING CHANGE: the task sets an environment variable and needs
    to return its config. The new registration thus looks like this
    
    ```js
    // your plugins file
    module.exports = (on, config) => {
      require('cypress/code-coverage/task')(on, config)
      // IMPORTANT to return the config object
      // with the any changed environment variables
      return config
    }
    ```
    
    Support code can check variable `Cypress.env('codeCoverageTasksRegistered')`
    before calling `cy.task`
    
    * update readme
    
    * update examples
    
    * add small plugins file
    
    * update readme
    
    * add example using plugins and support
    
    * add new example to CI
    
    * no need to start server in the example
    bahmutov authored Apr 6, 2020
    Configuration menu
    Copy the full SHA
    288b61d View commit details
    Browse the repository at this point in the history
  2. Removed Performance Warning, fixed by PR #98 (#178)

    Removed Performance Warning, which was fixed by PR #98
    coryarmbrecht authored Apr 6, 2020
    Configuration menu
    Copy the full SHA
    57bbc6b View commit details
    Browse the repository at this point in the history
Loading