PHP WebShell

Текущая директория: /opt/BitGoJS/node_modules/eslint-plugin-cypress/lib/rules

Просмотр файла: no-async-tests.js

'use strict'

module.exports = {
  meta: {
    docs: {
      description: 'Prevent using async/await in Cypress test cases',
      category: 'Possible Errors',
      recommended: true,
    },
    messages: {
      unexpected: 'Avoid using async functions with Cypress tests',
    },
  },

  create (context) {
    function isTestBlock (callExpressionNode) {
      const { type, name } = callExpressionNode.callee

      return type === 'Identifier'
                && name === 'it' || name === 'test'
    }

    function isTestAsync (node) {
      return node.arguments
                && node.arguments.length >= 2
                && node.arguments[1].async === true
    }

    return {
      Identifier (node) {
        if (node.name === 'cy' || node.name === 'Cypress') {
          const ancestors = context.getAncestors()
          const asyncTestBlocks = ancestors
          .filter((n) => n.type === 'CallExpression')
          .filter(isTestBlock)
          .filter(isTestAsync)

          if (asyncTestBlocks.length >= 1) {
            asyncTestBlocks.forEach((node) => {
              context.report({ node, messageId: 'unexpected' })
            })
          }
        }
      },
    }
  },
}

Выполнить команду


Для локальной разработки. Не используйте в интернете!