UNPKG

perfrunner

Version:

Command-line-interface for the perfrunner - automated UI performance test tool

10 lines (9 loc) 742 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.error = exports.CONFIG_URL_DEPRECATED = exports.URL_IS_EMPTY = exports.CONFIG_SHOULD_NOT_OVERRIDEN = exports.CONFIG_NOT_EXISTS = void 0; exports.CONFIG_NOT_EXISTS = `Perfrunner config not exists. Use --init command to generate the config file`; exports.CONFIG_SHOULD_NOT_OVERRIDEN = `Config already exists, operation not permitted to keep your settings safe. If you want to recreate config - delete it manually first`; exports.URL_IS_EMPTY = `Please provide non-empty url`; exports.CONFIG_URL_DEPRECATED = `Using URL property in config is deprecated. Please use property page instead`; const error = (err) => new Error(err); exports.error = error;