@contentful/integration-test-utils
Version:
Utilities for Contentful integration tests
42 lines (41 loc) • 1.3 kB
TypeScript
declare class SpaceNameTooLongError extends Error {
readonly details: {
spaceName: string;
length: number;
};
constructor(spaceName: string);
}
declare class SpaceCreationFailedError extends Error {
readonly details: {
spaceName: string;
};
constructor(spaceName: string);
}
declare class EnvironmentNameTooLongError extends Error {
readonly details: {
environmentName: string;
length: number;
};
constructor(environmentName: string);
}
declare class EnvironmentCreationFailedError extends Error {
readonly details: {
environmentName: string;
};
constructor(environmentName: string);
}
declare class EnvironmentNotReadyError extends Error {
readonly details: {
spaceName: string;
environmentName: string;
timeout: number;
};
constructor(spaceName: string, environmentName: string, timeout: number);
}
declare class MissingCredentialError extends Error {
readonly details: {
credentialName: string;
};
constructor(credentialName: string);
}
export { SpaceNameTooLongError, SpaceCreationFailedError, EnvironmentNameTooLongError, EnvironmentCreationFailedError, EnvironmentNotReadyError, MissingCredentialError, };