Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « plugins « cypress - github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8431f105ceeb9b4dcc8e4db4017f4f72657dca11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// ***********************************************************
// This example plugins/index.js can be used to load plugins
//
// You can change the location of this file or turn off loading
// the plugins file with the 'pluginsFile' configuration option.
//
// You can read more here:
// https://on.cypress.io/plugins-guide
// ***********************************************************

// This function is called when a project is opened or re-opened (e.g. due to
// the project's config changing)

const {
	addMatchImageSnapshotPlugin
} = require('cypress-image-snapshot/plugin')
const browserify = require('@cypress/browserify-preprocessor')

module.exports = (on) => {
}

module.exports = (on, config) => {

	on('file:preprocessor', browserify())

	addMatchImageSnapshotPlugin(on, config)
}