@@ -972,7 +972,7 @@ it("RestJsonConstantQueryString:ServerRequest", async () => {
972
972
/**
973
973
* A server should ignore parameters added to the content type
974
974
*/
975
- it("RestJsonMustSupportParametersInContentType:ServerRequest", async () => {
975
+ it.skip ("RestJsonMustSupportParametersInContentType:ServerRequest", async () => {
976
976
const testFunction = jest.fn();
977
977
testFunction.mockReturnValue(Promise.resolve({}));
978
978
const testService: Partial<RestJsonService<{}>> = {
@@ -3089,7 +3089,7 @@ it("RestJsonHttpPayloadWithUnion:ServerRequest", async () => {
3089
3089
/**
3090
3090
* No payload is sent if the union has no value.
3091
3091
*/
3092
- it("RestJsonHttpPayloadWithUnsetUnion:ServerRequest", async () => {
3092
+ it.skip ("RestJsonHttpPayloadWithUnsetUnion:ServerRequest", async () => {
3093
3093
const testFunction = jest.fn();
3094
3094
testFunction.mockReturnValue(Promise.resolve({}));
3095
3095
const testService: Partial<RestJsonService<{}>> = {
@@ -3181,7 +3181,7 @@ it("RestJsonHttpPayloadWithUnion:ServerResponse", async () => {
3181
3181
/**
3182
3182
* No payload is sent if the union has no value.
3183
3183
*/
3184
- it("RestJsonHttpPayloadWithUnsetUnion:ServerResponse", async () => {
3184
+ it.skip ("RestJsonHttpPayloadWithUnsetUnion:ServerResponse", async () => {
3185
3185
class TestService implements Partial<RestJsonService<{}>> {
3186
3186
HttpPayloadWithUnion(input: any, ctx: {}): Promise<HttpPayloadWithUnionServerOutput> {
3187
3187
const response = {} as any;
@@ -28798,7 +28798,7 @@ it("PostUnionWithJsonNameResponse3:ServerResponse", async () => {
28798
28798
/**
28799
28799
* Compression algorithm encoding is appended to the Content-Encoding header.
28800
28800
*/
28801
- it("SDKAppliedContentEncoding_restJson1:ServerRequest", async () => {
28801
+ it.skip ("SDKAppliedContentEncoding_restJson1:ServerRequest", async () => {
28802
28802
const testFunction = jest.fn();
28803
28803
testFunction.mockReturnValue(Promise.resolve({}));
28804
28804
const testService: Partial<RestJsonService<{}>> = {
@@ -28844,7 +28844,7 @@ it("SDKAppliedContentEncoding_restJson1:ServerRequest", async () => {
28844
28844
* request compression encoding from the HTTP binding.
28845
28845
*
28846
28846
*/
28847
- it("SDKAppendedGzipAfterProvidedEncoding_restJson1:ServerRequest", async () => {
28847
+ it.skip ("SDKAppendedGzipAfterProvidedEncoding_restJson1:ServerRequest", async () => {
28848
28848
const testFunction = jest.fn();
28849
28849
testFunction.mockReturnValue(Promise.resolve({}));
28850
28850
const testService: Partial<RestJsonService<{}>> = {
0 commit comments