Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ it("RpcV2CborDateTimeWithFractionalSeconds:Response", async () => {
/**
* Parses simple RpcV2 Cbor errors
*/
it("RpcV2CborInvalidGreetingError:Error:GreetingWithErrors", async () => {
it.skip("RpcV2CborInvalidGreetingError:Error:GreetingWithErrors", async () => {
const client = new RpcV2ProtocolClient({
...clientParams,
requestHandler: new ResponseDeserializationTestHandler(
Expand Down Expand Up @@ -620,7 +620,7 @@ it("RpcV2CborInvalidGreetingError:Error:GreetingWithErrors", async () => {
/**
* Parses a complex error with no message member
*/
it("RpcV2CborComplexError:Error:GreetingWithErrors", async () => {
it.skip("RpcV2CborComplexError:Error:GreetingWithErrors", async () => {
const client = new RpcV2ProtocolClient({
...clientParams,
requestHandler: new ResponseDeserializationTestHandler(
Expand Down Expand Up @@ -667,7 +667,7 @@ it("RpcV2CborComplexError:Error:GreetingWithErrors", async () => {
fail("Expected an exception to be thrown from response");
});

it("RpcV2CborEmptyComplexError:Error:GreetingWithErrors", async () => {
it.skip("RpcV2CborEmptyComplexError:Error:GreetingWithErrors", async () => {
const client = new RpcV2ProtocolClient({
...clientParams,
requestHandler: new ResponseDeserializationTestHandler(
Expand Down
Loading