Cypress - Plugins and Ecosystem
Given this snippet in
cypress/plugins/index.js:
module.exports = (on, config) => {
require('@cypress/code-coverage/task')(on, config);
return config;
};
What will happen if you remove the line with require('@cypress/code-coverage/task')(on, config);?