Skip to content

Commit

Permalink
skip grpc tests
Browse files Browse the repository at this point in the history
  • Loading branch information
armandobelardo committed Oct 11, 2024
1 parent 115908c commit 96eb61f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions servers/fern-bot/src/__test__/grpc-proxy.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ interface Vector {
values: number[];
}

it("unary w/ gRPC server reflection", async () => {
it.skip("unary w/ gRPC server reflection", async () => {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const response = await proxyGrpc({
body: {
Expand Down Expand Up @@ -79,7 +79,7 @@ it.skip("unary w/ default schema", async () => {
expect(upsertResponse.upsertedCount).toBe(2);
});

it("unauthorized", async () => {
it.skip("unauthorized", async () => {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const response = await proxyGrpc({
body: {
Expand Down Expand Up @@ -109,7 +109,7 @@ it("unauthorized", async () => {
}`);
});

it("invalid schema", async () => {
it.skip("invalid schema", async () => {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const response = await proxyGrpc({
body: {
Expand All @@ -132,7 +132,7 @@ it("invalid schema", async () => {
expect(elizaResponse.sentence).toBe(undefined);
});

it("invalid host", async () => {
it.skip("invalid host", async () => {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const response = await proxyGrpc({
body: {
Expand Down

0 comments on commit 96eb61f

Please sign in to comment.