Skip to content

Releases: cypress-io/code-coverage

v3.0.0

06 Apr 19:21
57bbc6b
Compare
Choose a tag to compare

3.0.0 (2020-04-06)

Features

  • set flag from plugins task that they were registered (#180) (288b61d)

BREAKING CHANGES

  • the task sets an environment variable and needs
    to return its config. The new registration thus looks like this
// 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

v2.0.5

05 Apr 22:01
ce34d61
Compare
Choose a tag to compare

2.0.5 (2020-04-05)

Bug Fixes

v2.0.4

04 Apr 22:40
Compare
Choose a tag to compare

2.0.4 (2020-04-04)

Bug Fixes

  • deps: update dependency @cypress/browserify-preprocessor to v2.2.1 (7b2e452)

v2.0.3

04 Apr 21:19
c4cb389
Compare
Choose a tag to compare

2.0.3 (2020-04-04)

Bug Fixes

  • update spec filter depending on the mask (#173) (c4cb389)

v2.0.2

04 Apr 19:41
bd09462
Compare
Choose a tag to compare

2.0.2 (2020-04-04)

Bug Fixes

v2.0.1

04 Apr 06:09
Compare
Choose a tag to compare

2.0.1 (2020-04-04)

Bug Fixes

  • deps: update dependency nyc to v15.0.1 (732001d)

v2.0.0

30 Mar 17:36
461417a
Compare
Choose a tag to compare

2.0.0 (2020-03-30)

Features

BREAKING CHANGES

  • nyc is no longer a peer dependency, instead
    this module calls its API directly.

  • use nyc as direct dependency

  • feat: use nyc directly as a module

v2.0.0-beta.2

27 Mar 20:19
Compare
Choose a tag to compare
v2.0.0-beta.2 Pre-release
Pre-release

2.0.0-beta.2 (2020-03-27)

Features

  • move istanbul-lib-coverage from peer to prod dependencies (3eb6153)

v2.0.0-beta.1

27 Mar 19:07
Compare
Choose a tag to compare
v2.0.0-beta.1 Pre-release
Pre-release

2.0.0-beta.1 (2020-03-27)

Features

  • use nyc directly as a module (7cda182)

BREAKING CHANGES

  • nyc is no longer a peer dependency, instead
    this module calls its API directly.

v1.14.0

10 Mar 03:16
e4b9698
Compare
Choose a tag to compare

1.14.0 (2020-03-10)

Features

  • find nyc even if installed higher up (#153) (e4b9698)