Skip to content

Commit

Permalink
fix: skip tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
jiyoung-an committed Jun 25, 2024
1 parent 151f043 commit b810b6b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/assistants.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const ASST_PATTERN = /^asst_([A-Za-z0-9]{24})$/;

jest.setTimeout(60000);

describe('assistant', () => {
describe.skip('assistant', () => {
let ainft: AinftJs;

beforeAll(() => {
Expand Down
2 changes: 1 addition & 1 deletion test/chat.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const TX_PATTERN = /^0x([A-Fa-f0-9]{64})$/;

jest.setTimeout(60000);

describe('chat', () => {
describe.skip('chat', () => {
let ainft: AinftJs;

beforeAll(() => {
Expand Down
2 changes: 1 addition & 1 deletion test/messages.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ const MSG_PATTERN = /^msg_([A-Za-z0-9]{24})$/;

jest.setTimeout(60000);

describe('message', () => {
describe.skip('message', () => {
let ainft: AinftJs;

beforeAll(async () => {
Expand Down
2 changes: 1 addition & 1 deletion test/threads.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const THREAD_PATTERN = /^thread_([A-Za-z0-9]{24})$/;

jest.setTimeout(60000);

describe('thread', () => {
describe.skip('thread', () => {
let ainft: AinftJs;

beforeAll(async () => {
Expand Down

0 comments on commit b810b6b

Please sign in to comment.