Add unit test suite with Jest (122 tests covering all modules)#675
Open
devin-ai-integration[bot] wants to merge 1 commit into
Open
Add unit test suite with Jest (122 tests covering all modules)#675devin-ai-integration[bot] wants to merge 1 commit into
devin-ai-integration[bot] wants to merge 1 commit into
Conversation
- Set up Jest with jsdom environment for testing Chrome extension code - Add 122 unit tests covering all JavaScript modules: - leetcode.js: convertToSlug, addLeadingZeros, checkElem, parseCode, parseStats, languages mapping - gfg.js: toKebabCase, findGfgLanguage, findTitle, findDifficulty, getProblemStatement - background.js: handleMessage with various request scenarios - welcome.js: statusCode and linkStatusCode error handling - oauth2.js: oAuth2 init/begin, localAuth parseAccessCode - Update .eslintrc with Jest environment override for test files - Add npm test and test:coverage scripts to package.json Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
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 repo had zero test coverage — no test framework, no test files, no test runner. This PR bootstraps a full unit testing setup and adds 122 tests across all 5 JavaScript modules.
What changed
Jest + jsdom configured —
package.jsongainsjest,jest-environment-jsdomdevDeps,"test"and"test:coverage"scripts, and ajestconfig block pointing at__tests__/..eslintrc— added anoverridesentry enabling thejestenv for test files sodescribe/test/expectglobals are recognized.__tests__/leetcode.test.js(59 tests) — covers the pure utility functions extracted from the largest module:convertToSlug(slug generation with accented chars,&→-and-, trimming)addLeadingZeros(zero-padding problem number prefixes to 4 digits)checkElem(null/empty guard for DOM collections)parseCode/parseStats(DOM parsing with jsdom)languagesmapping validation__tests__/gfg.test.js(26 tests) —toKebabCase,findGfgLanguage,findTitle,findDifficulty,getProblemStatement.__tests__/background.test.js(10 tests) —handleMessagewith success/failure/null request paths, verifying chrome storage calls and tab management.__tests__/welcome.test.js(19 tests) —statusCodeandlinkStatusCodeswitch-case error handling for all HTTP status codes.__tests__/oauth2.test.js(16 tests) —oAuth2.init/beginflow andlocalAuth.parseAccessCodeURL parsing.Run
Link to Devin session: https://app.devin.ai/sessions/e41e515cfabe41378e5f164311dd6774
Requested by: @QasimWani