test: add unit tests for predictive-document-analysis content utilities#226
Open
fragres wants to merge 1 commit intoDeodat-Lawson:mainfrom
Open
test: add unit tests for predictive-document-analysis content utilities#226fragres wants to merge 1 commit intoDeodat-Lawson:mainfrom
fragres wants to merge 1 commit intoDeodat-Lawson:mainfrom
Conversation
The helper functions in utils/content.ts (groupContentFromChunks, cleanText, extractKeywords, hasReferencePattern, calculateTextSimilarity, truncateText, hasSpecificIdentifier) had no dedicated unit tests. Add a test file that covers the main behaviours and edge cases for each function, making regressions easier to catch when the utilities change.
|
@fragres is attempting to deploy a commit to the Timothy Lin's projects Team on Vercel. A member of the Team first needs to authorize it. |
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The helper functions in
src/app/api/agents/predictive-document-analysis/utils/content.tsare used throughout the predictive analysis pipeline but had no dedicated unit tests, making it easy to introduce regressions silently.This PR adds a new test file
__tests__/api/predictiveDocumentAnalysis/content.test.tswith coverage for all seven exported functions:groupContentFromChunkscleanTextextractKeywordsminLengthboundary, customminLengthhasReferencePatterncalculateTextSimilaritytruncateTextmaxLengthhasSpecificIdentifierTest plan
pnpm testpasses with the new file included