From 6bbb11e0be097595a1c1a756985905115e28f32f Mon Sep 17 00:00:00 2001 From: gregfenton Date: Mon, 11 May 2020 12:46:45 -0400 Subject: [PATCH] Update README.md Minor addition to let people unfamiliar with task/plugin registration that code-coverage/task is "just another task". See https://github.com/prescottprue/cypress-firebase/issues/129 --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 43bc1731..1fc287cd 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,9 @@ Register tasks in your `cypress/plugins/index.js` file ```js module.exports = (on, config) => { require('@cypress/code-coverage/task')(on, config) + + // add other tasks to be registered here + // IMPORTANT to return the config object // with the any changed environment variables return config