0.0.1 ā€¢ Published 4 years ago

cypress-parallel-retrier v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

cypress-parallel-retrier

šŸ›  Development in progress, beta version

npm downloads

This library is a wrapper around process-rerun

The purpose of this library is - build simple and flexible interface for cypress framework parallel execution with rerun (on fail) possibility

Usage and Example

Documentation

usage

const {buildExecutor} = require('cypress-parallel-retrier');

executeByFile();
async function executeByFile() {
  const cwd = process.cwd();
  const result = await buildExecutor(resolve(cwd, './path/to/specs'))
    .byFile()
    .command({'--process-argument': 'process-argument-value'}, {ENV_VARIABLE: 'en-varialbe-value'})
    .executor({attemptsCount: 2, maxThreads: 5, logLevel: 'VERBOSE', longestProcessTime: 60 * 1000, pollTime: 100})
    .execute();

  console.log(result);
  if(result.retriable.length || result.notRetriable.length) {
    process.exit(1);
  }
}

Documentation

buildExecutor

buildExecutor('./path/to/specs/folder')

argumentsdescription
pathToSpecFolderOrSpecsFilesListType: string or string[] Path to specs folder, or list (array) with specs files path;

returns {byFile: function;}

byFile

buildExecutor(...args).byFile()

no arguments here

returns {command: function}

command

argumentsdescription
processArgsType: undefinednull{[prop: string]: string} Object with required process argumentss, use format prop name with - or --, example '--prop' or '-p'
processEnvVarsType: undefinednull{[prop: string]: string} Object with required process env variables, use format prop name upper snake_case, LOG_LEVEL

returns {executor: function}

executor

buildExecutor(...args).byFile(...args1).command().executor({maxThreads: 1, attemptsCount: 2, logLevel: 'ERROR'})

argumentsdescription
buildOptsType: object Options for executor
buildOpts.maxThreadsType: number, How many threads can be executed in same time Default threads count is 5
buildOpts.attemptsCountType: number, How many times can we try to execute command for success result in next cycle will be executed only faild command, success commands will not be reexecuted Default attempts count is 2
buildOpts.pollTimeType: number , Period for recheck about free thread Default is 1 second
buildOpts.logLevelType: string, one of 'ERROR', 'WARN', 'INFO', 'VERBOSE', ERROR - only errors, WARN - errors and warnings, INFO - errors, warnings and information, VERBOSE - full logging Default is 'ERROR'
buildOpts.currentExecutionVariableType: string, will be execution variable with execution index for every cycle will be ++
buildOpts.everyCycleCallbackType: function, Optional. everyCycleCallback will be executed after cycle, before next execution cycle. Default is false
buildOpts.processResultAnalyzerType: function, Optional. processResultAnalyzer is a function where arguments are original command, execution stack trace and notRetriable array processResultAnalyzer should return a new command what will be executed in next cycle or null - if satisfactory result
buildOpts.longestProcessTimeType: number, In case if command execution time is longer than longest Process Time - executor will kill it automatically and will try to execute this command again. Default time is 45 seconds

returns {execute: async function}

execute

buildExecutor(...args).byFile(...args1).command().executor(...args2).execute()

no arguments here

returns {retriable: string[]; notRetriable: string[]}