12 lines
316 B
TypeScript
12 lines
316 B
TypeScript
/// <reference types="cypress" />
|
|
|
|
/**
|
|
* @type {Cypress.PluginConfig}
|
|
*/
|
|
export default (on: Cypress.PluginEvents, config: Cypress.PluginConfigOptions) => {
|
|
// `on` is used to hook into various events Cypress emits
|
|
// `config` is the resolved Cypress config
|
|
// codeCoverageTask(on, config)
|
|
return config
|
|
}
|