@badeball/cypress-configuration
Version:
[](https://github.com/badeball/cypress-configuration/actions/workflows/build.yml) [ • 970 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.UnsupportedCypressEra = exports.UnrecognizedConfigurationFileError = exports.MultipleConfigurationFilesError = exports.MissingConfigurationFileError = exports.CypressConfigurationError = void 0;
class CypressConfigurationError extends Error {
}
exports.CypressConfigurationError = CypressConfigurationError;
class MissingConfigurationFileError extends CypressConfigurationError {
}
exports.MissingConfigurationFileError = MissingConfigurationFileError;
class MultipleConfigurationFilesError extends CypressConfigurationError {
}
exports.MultipleConfigurationFilesError = MultipleConfigurationFilesError;
class UnrecognizedConfigurationFileError extends CypressConfigurationError {
}
exports.UnrecognizedConfigurationFileError = UnrecognizedConfigurationFileError;
class UnsupportedCypressEra extends CypressConfigurationError {
}
exports.UnsupportedCypressEra = UnsupportedCypressEra;