(message: string)
| 60 | const notFound = (message: string) => new TestWorkOSVaultNotFoundError({ message, status: 404 }); |
| 61 | |
| 62 | const conflict = (message: string) => new TestWorkOSVaultConflictError({ message, status: 409 }); |
| 63 | |
| 64 | const invalidRequest = (message: string) => |
| 65 | new TestWorkOSVaultInvalidRequestError({ message, status: 400 }); |
no outgoing calls
no test coverage detected