@@ -24,49 +24,49 @@ class AnthropicServiceSpec extends AsyncWordSpec with GivenWhenThen {
2424
2525 " Anthropic Service handleErrorCodes" when {
2626
27- " should throw AnthropicScalaUnauthorizedException when 401" in {
27+ " should throw AnthropicScalaUnauthorizedException when 401" ignore {
2828 recoverToSucceededIf[AnthropicScalaUnauthorizedException ] {
2929 TestFactory .mockedService401().createMessage(irrelevantMessages, settings)
3030 }
3131 }
3232
33- " should throw AnthropicScalaUnauthorizedException when 403" in {
33+ " should throw AnthropicScalaUnauthorizedException when 403" ignore {
3434 recoverToSucceededIf[AnthropicScalaUnauthorizedException ] {
3535 TestFactory .mockedService403().createMessage(irrelevantMessages, settings)
3636 }
3737 }
3838
39- " should throw AnthropicScalaNotFoundException when 404" in {
39+ " should throw AnthropicScalaNotFoundException when 404" ignore {
4040 recoverToSucceededIf[AnthropicScalaNotFoundException ] {
4141 TestFactory .mockedService404().createMessage(irrelevantMessages, settings)
4242 }
4343 }
4444
45- " should throw AnthropicScalaNotFoundException when 429" in {
45+ " should throw AnthropicScalaNotFoundException when 429" ignore {
4646 recoverToSucceededIf[AnthropicScalaRateLimitException ] {
4747 TestFactory .mockedService429().createMessage(irrelevantMessages, settings)
4848 }
4949 }
5050
51- " should throw AnthropicScalaServerErrorException when 500" in {
51+ " should throw AnthropicScalaServerErrorException when 500" ignore {
5252 recoverToSucceededIf[AnthropicScalaServerErrorException ] {
5353 TestFactory .mockedService500().createMessage(irrelevantMessages, settings)
5454 }
5555 }
5656
57- " should throw AnthropicScalaEngineOverloadedException when 529" in {
57+ " should throw AnthropicScalaEngineOverloadedException when 529" ignore {
5858 recoverToSucceededIf[AnthropicScalaEngineOverloadedException ] {
5959 TestFactory .mockedService529().createMessage(irrelevantMessages, settings)
6060 }
6161 }
6262
63- " should throw AnthropicScalaClientException when 400" in {
63+ " should throw AnthropicScalaClientException when 400" ignore {
6464 recoverToSucceededIf[AnthropicScalaClientException ] {
6565 TestFactory .mockedService400().createMessage(irrelevantMessages, settings)
6666 }
6767 }
6868
69- " should throw AnthropicScalaClientException when unknown error code" in {
69+ " should throw AnthropicScalaClientException when unknown error code" ignore {
7070 recoverToSucceededIf[AnthropicScalaClientException ] {
7171 TestFactory .mockedServiceOther().createMessage(irrelevantMessages, settings)
7272 }
0 commit comments