{"id":31128827,"url":"https://github.com/ijlee2/ember-codemod-add-missing-tests","last_synced_at":"2026-02-23T11:26:52.844Z","repository":{"id":315042364,"uuid":"1057303597","full_name":"ijlee2/ember-codemod-add-missing-tests","owner":"ijlee2","description":"Codemod to add missing tests","archived":false,"fork":false,"pushed_at":"2026-01-28T11:54:44.000Z","size":240,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-29T03:22:26.894Z","etag":null,"topics":["codemod","ember-codemod","emberjs","embroider"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ijlee2.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-15T14:45:42.000Z","updated_at":"2026-01-28T11:54:38.000Z","dependencies_parsed_at":"2025-09-16T12:07:46.528Z","dependency_job_id":null,"html_url":"https://github.com/ijlee2/ember-codemod-add-missing-tests","commit_stats":null,"previous_names":["ijlee2/ember-codemod-add-missing-tests"],"tags_count":17,"template":false,"template_full_name":null,"purl":"pkg:github/ijlee2/ember-codemod-add-missing-tests","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ijlee2%2Fember-codemod-add-missing-tests","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ijlee2%2Fember-codemod-add-missing-tests/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ijlee2%2Fember-codemod-add-missing-tests/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ijlee2%2Fember-codemod-add-missing-tests/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ijlee2","download_url":"https://codeload.github.com/ijlee2/ember-codemod-add-missing-tests/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ijlee2%2Fember-codemod-add-missing-tests/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29084095,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-04T03:31:03.593Z","status":"ssl_error","status_checked_at":"2026-02-04T03:29:50.742Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["codemod","ember-codemod","emberjs","embroider"],"created_at":"2025-09-18T01:04:08.633Z","updated_at":"2026-02-23T11:26:52.839Z","avatar_url":"https://github.com/ijlee2.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![This project uses GitHub Actions for continuous integration.](https://github.com/ijlee2/ember-codemod-add-missing-tests/actions/workflows/ci.yml/badge.svg)](https://github.com/ijlee2/ember-codemod-add-missing-tests/actions/workflows/ci.yml)\n\n# ember-codemod-add-missing-tests\n\n_Codemod to add missing tests_\n\n\n## Why use it?\n\nLarge projects without tests are hard to maintain and extend. Run this codemod to find untested code and create default tests.\n\nThe codemod:\n\n- Supports 10 entities in Ember and Ember Data\n- Accounts for TypeScript, `\u003ctemplate\u003e` tag, and route splitting\n- Blazingly fast compared to Ember CLI\n\n\n## Usage\n\nStep 1. Quickly migrate.\n\n```sh\ncd \u003cpath/to/your/project\u003e\nnpx ember-codemod-add-missing-tests \u003carguments\u003e\n```\n\nStep 2. Review the package.\n\n- [x] Fix format and lint errors.\n- [x] Run the new integration and unit tests. Update assertions or skip tests as needed.\n\n\n### Arguments\n\n\u003cdetails\u003e\n\n\u003csummary\u003eOptional: Specify the component structure\u003c/summary\u003e\n\nBy default, an Octane project has the flat component structure. Pass `--component-structure` to indicate otherwise.\n\n```sh\nnpx ember-codemod-add-missing-tests --component-structure nested\n```\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\n\u003csummary\u003eOptional: Specify the project root\u003c/summary\u003e\n\nPass `--root` to run the codemod somewhere else (i.e. not in the current directory).\n\n```sh\nnpx ember-codemod-add-missing-tests --root \u003cpath/to/your/project\u003e\n```\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\n\u003csummary\u003eOptional: Specify the test-app location\u003c/summary\u003e\n\nBy default, the codemod creates tests in the package where it is run. Pass `--test-app-location` to override the logic.\n\n```sh\nnpx ember-codemod-add-missing-tests --test-app-location ../../tests/my-v2-addon\n```\n\n\u003c/details\u003e\n\n\n### Limitations\n\nThe codemod is designed to cover typical cases. It is not designed to cover one-off cases.\n\nTo better meet your needs, consider cloning the repo and running the codemod locally.\n\n```sh\ncd \u003cpath/to/cloned/repo\u003e\n\n# Compile TypeScript\npnpm build\n\n# Run codemod\n./dist/bin/ember-codemod-add-missing-tests.js --root \u003cpath/to/your/project\u003e\n```\n\n\n## Compatibility\n\n- Node.js v22 or above\n\n\n## Contributing\n\nSee the [Contributing](CONTRIBUTING.md) guide for details.\n\n\n## License\n\nThis project is licensed under the [MIT License](LICENSE.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fijlee2%2Fember-codemod-add-missing-tests","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fijlee2%2Fember-codemod-add-missing-tests","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fijlee2%2Fember-codemod-add-missing-tests/lists"}