mirror of
https://gitee.com/docsifyjs/docsify.git
synced 2024-12-06 06:00:17 +08:00
0e54ea1177
* chore: added cypresss * chore: added sidebar tests * chore: script update * chore: removed cypress examples * chore: added lib to eslintignore * chore: script fixes * chore: updated the snapshot
42 lines
1.2 KiB
JavaScript
42 lines
1.2 KiB
JavaScript
// ***********************************************
|
|
// This example commands.js shows you how to
|
|
// create various custom commands and overwrite
|
|
// existing commands.
|
|
//
|
|
// For more comprehensive examples of custom
|
|
// commands please read more here:
|
|
// https://on.cypress.io/custom-commands
|
|
// ***********************************************
|
|
//
|
|
//
|
|
// -- This is a parent command --
|
|
// Cypress.Commands.add("login", (email, password) => { ... })
|
|
//
|
|
//
|
|
// -- This is a child command --
|
|
// Cypress.Commands.add("drag", { prevSubject: 'element'}, (subject, options) => { ... })
|
|
//
|
|
//
|
|
// -- This is a dual command --
|
|
// Cypress.Commands.add("dismiss", { prevSubject: 'optional'}, (subject, options) => { ... })
|
|
//
|
|
//
|
|
// -- This will overwrite an existing command --
|
|
// Cypress.Commands.overwrite("visit", (originalFn, url, options) => { ... })
|
|
|
|
import { addMatchImageSnapshotCommand } from 'cypress-image-snapshot/command'
|
|
addMatchImageSnapshotCommand({
|
|
failureThreshold: 10.0,
|
|
failureThresholdType: 'percent',
|
|
customDiffConfig: { threshold: 10.0 },
|
|
capture: 'viewport',
|
|
timeout: '60000'
|
|
})
|
|
Cypress.Commands.add('setResolution', size => {
|
|
if (Cypress._.isArray(size)) {
|
|
cy.viewport(size[0], size[1])
|
|
} else {
|
|
cy.viewport(size)
|
|
}
|
|
})
|