hrms-manual/node_modules/eslint-plugin-cypress/lib/config/recommended.js
2023-09-06 14:51:44 +07:00

14 lines
303 B
JavaScript

'use strict'
module.exports = {
plugins: ['cypress'],
env: {
'cypress/globals': true,
},
rules: {
'cypress/no-assigning-return-values': 'error',
'cypress/no-unnecessary-waiting': 'error',
'cypress/no-async-tests': 'error',
'cypress/unsafe-to-chain-command': 'error',
},
}