{"id":20348522,"url":"https://github.com/onebeyond/front-live-coding-challenge","last_synced_at":"2025-10-25T06:19:56.463Z","repository":{"id":42003604,"uuid":"471043656","full_name":"onebeyond/front-live-coding-challenge","owner":"onebeyond","description":null,"archived":false,"fork":false,"pushed_at":"2023-01-14T16:21:52.000Z","size":1019,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-09-14T18:26:17.868Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/onebeyond.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-03-17T15:48:48.000Z","updated_at":"2023-01-27T08:13:24.000Z","dependencies_parsed_at":"2023-02-09T20:00:28.490Z","dependency_job_id":null,"html_url":"https://github.com/onebeyond/front-live-coding-challenge","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/onebeyond/front-live-coding-challenge","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onebeyond%2Ffront-live-coding-challenge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onebeyond%2Ffront-live-coding-challenge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onebeyond%2Ffront-live-coding-challenge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onebeyond%2Ffront-live-coding-challenge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/onebeyond","download_url":"https://codeload.github.com/onebeyond/front-live-coding-challenge/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onebeyond%2Ffront-live-coding-challenge/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279018121,"owners_count":26086280,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-14T02:00:06.444Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-11-14T22:21:00.095Z","updated_at":"2025-10-14T06:10:47.383Z","avatar_url":"https://github.com/onebeyond.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DCSL GS Frontend Code Challenge - Phone Catalogue App 📱\n\n## 💭 Context\n\nYou are part of a team working on a project for a client who is developing a website with a phone catalogue.\n\nThe app already has the following features:\n\n1. Phone catalogue visualisation.\n2. Unit tests with __[jest](https://jestjs.io/)__ of the implemented functionalities.\n3. Integration tests with __[Cypress](https://www.cypress.io/)__ of the implemented functionalities.\n\n## ℹ️ Useful information\n\n### __Essential commands__\n\n- To install the dependencies:\n\n   ```\n   npm i\n   ```\n\n- To run the application:\n\n   ```\n   npm start\n   ```\n\n- To execute all the tests:\n\n   ```\n   npm test\n   ```\n\n- To execute the unitary tests:\n\n   ```\n   npm run test:unit\n   ```\n\n- To execute the integration tests:\n\n   ```\n   npm run test:integration\n   ```\n\n### __API Documentation__\n\nhttps://front-live-coding-api.herokuapp.com/__/docs/api/\n\n### __Team Agreements__\n\n- Communication between the team is fundamental. If anyone is blocked or has any doubts, it is best to ask the rest of your teammates.\n- Commits must follow the [Conventional Commits specification](https://www.conventionalcommits.org/en/v1.0.0/).\n- To consider the task done:\n   - The task specified must be implemented.\n   - Existing tests must pass.\n   - In case of adding new functionalities, new tests must be added.\n- Once the task is completed, a Pull Request from the branch must be created so that it’s reviewed by the rest of the team before merging to the `main` branch.\n\n## 🔜 Previous steps to the live coding\n\n1. Clone the repository in your local environment.\n2. Use the editor of your choice to visualise the code.\n3. Edit the `.env` file and set the `X-User-Id` with your GitHub username.\n\n## 💻 Live coding tasks\n\nWith your teammates’ help, you must complete the tasks given to the highest possible quality, always following the Team Agreements:\n\n\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;1️⃣ Try to `execute the code locally and verify that it runs correctly`. If not, try to solve any bugs you find until the app works as expected. Try opening the WebConsole of your navigator to have more context. 😉\n\n\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;2️⃣ Run the `unit tests` and verify that they run correctly. Otherwise, try to fix the bugs you find until the tests pass.\n\n\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;3️⃣ Run the `integration tests` and verify that they run correctly. If not, try to solve any bugs you may find until the tests pass.\n\n\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;4️⃣ Add a new `context` (with two properties: `message` and `isError`) to handle the errors in the API calls executed at `PhoneContext` and display them in the `Snackbar` component.\n\n\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;5️⃣ Include the possibility to `remove a phone from the detail view`, as well as the tests that check if the functionality is working correctly.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fonebeyond%2Ffront-live-coding-challenge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fonebeyond%2Ffront-live-coding-challenge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fonebeyond%2Ffront-live-coding-challenge/lists"}