Skip to content

Commit

Permalink
Increase sleep, remove unnecessary export
Browse files Browse the repository at this point in the history
  • Loading branch information
aulorbe committed Jan 9, 2025
1 parent 60af784 commit 9e7b454
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/data/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ export type {
QueryShared,
} from './vectors/query';
export type { ListOptions } from './vectors/list';
export { IndexHostSingleton } from './indexHostSingleton';

/**
* The `Index` class is used to perform data operations (upsert, query, etc)
Expand Down
2 changes: 1 addition & 1 deletion src/integration/assistant-data/uploadAndDeleteFile.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ describe('Upload file happy path', () => {
const response = await assistant.uploadFile({
path: tempFile,
});
await sleep(27000); // Crazy long sleep necessary; need to optimize (+ technically we already know this works
await sleep(30000); // Crazy long sleep necessary; need to optimize (+ technically we already know this works
// b/c of setup.ts
expect(response).toBeDefined();
expect(response.name).toEqual(tempFile);
Expand Down

0 comments on commit 9e7b454

Please sign in to comment.