{"id":15170489,"url":"https://github.com/aytekinkaplan/advanced_cypress_study","last_synced_at":"2025-05-14T07:13:20.647Z","repository":{"id":232722761,"uuid":"784921802","full_name":"aytekinkaplan/Advanced_Cypress_Study","owner":"aytekinkaplan","description":"Advanced Cypress Study","archived":false,"fork":false,"pushed_at":"2024-04-11T04:07:03.000Z","size":2295,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-17T01:37:32.487Z","etag":null,"topics":["api","api-rest","chai","css3","cypress","github","github-actions","html5","intellij","javascript","mocha","mocha-chai","test-automation","testing","ui"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aytekinkaplan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2024-04-10T20:37:56.000Z","updated_at":"2024-04-10T20:57:59.000Z","dependencies_parsed_at":"2024-04-11T05:59:33.750Z","dependency_job_id":null,"html_url":"https://github.com/aytekinkaplan/Advanced_Cypress_Study","commit_stats":null,"previous_names":["aytekinkaplan/advanced_cypress_study"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aytekinkaplan%2FAdvanced_Cypress_Study","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aytekinkaplan%2FAdvanced_Cypress_Study/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aytekinkaplan%2FAdvanced_Cypress_Study/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aytekinkaplan%2FAdvanced_Cypress_Study/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aytekinkaplan","download_url":"https://codeload.github.com/aytekinkaplan/Advanced_Cypress_Study/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254092847,"owners_count":22013294,"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","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":["api","api-rest","chai","css3","cypress","github","github-actions","html5","intellij","javascript","mocha","mocha-chai","test-automation","testing","ui"],"created_at":"2024-09-27T08:03:18.925Z","updated_at":"2025-05-14T07:13:20.602Z","avatar_url":"https://github.com/aytekinkaplan.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"Absolutely, I've incorporated the changes you requested:\n\n**# Advanced Cypress Study**\n\n\n## Author\n\nI am Aytekin.\n\n## What’s in this repo\n\nThis repo contains all the materials for the course. Most of the chapters start with `[chapter_name]_start.js` and finish with `[chapter_name]_end.js` file.\n\n### Installation\n\nSuper simple\n\n1. `npm install`\n2. `npm start`\n3. Open your browser on `http://localhost:3000`\n\n### Application utilities\n\nBy typing `F2` key in the application, a small toolset appears that will allow you to reset your application to a desired state. You can delete boards, lists, cards, users, or everything. This is useful when playing with the application manually.\n\n# API documentation\n\n**`GET`** `/api/boards`\n\nReturns all boards\n\n**Example (unauthorized user):**\n\n```json\n[\n  {\n    \"name\": \"new project\",\n    \"user\": 0,\n    \"id\": 27315982008,\n    \"starred\": false,\n    \"created\": \"2020-09-01\"\n  },\n  {\n    \"name\": \"moon landing 2\",\n    \"user\": 0,\n    \"id\": 14254049205,\n    \"starred\": true,\n    \"created\": \"2020-09-01\"\n  }\n]\n```\n\n**Example (authorized user):**\n\n```json\n[\n  {\n    \"name\": \"new project\",\n    \"user\": 0,\n    \"id\": 27315982008,\n    \"starred\": false,\n    \"created\": \"2020-09-01\"\n  },\n  {\n    \"name\": \"moon landing 2\",\n    \"user\": 0,\n    \"id\": 14254049205,\n    \"starred\": true,\n    \"created\": \"2020-09-01\"\n  },\n  {\n    \"name\": \"private board\",\n    \"user\": 1, // User ID of the board author\n    \"id\": 6606529940,\n    \"starred\": false,\n    \"created\": \"2020-09-01\"\n  }\n]\n```\n\n---\n\n**`POST`** `/api/boards`\n\nCreates a new board\n\n**Example request:**\n\n```json\n{\n  \"name\": \"moon landing 2\"\n}\n```\n\n**Example response:**\n\n```json\n{\n  \"name\": \"moon landing 2\",\n  \"user\": 1,\n  \"id\": 22559285486,\n  \"starred\": false,\n  \"created\": \"2020-09-01\"\n}\n```\n\n---\n\n**`GET`** `/api/boards/{boardId}`\n\nReturns details of a board with a given `boardId`\n\n**Example response:**\n\n```json\n{\n  \"name\": \"new project\",\n  \"user\": 0,\n  \"id\": 27315982008,\n  \"starred\": false,\n  \"created\": \"2020-09-01\"\n}\n```\n\n---\n\n**`PATCH`** `/api/boards/{boardId}`\n\nChanges details of a board with a given `boardId`. `starred` and `name` attributes can be changed.\n\n**Example request:**\n\n```json\n{\n  \"starred\": true,\n  \"name\": \"project alpha\"\n}\n```\n\n---\n\n**`DELETE`** `/api/boards/{boardId}`\n\nDeletes a board with a given `boardId`.\n\n---\n\n**`GET`** `/api/lists`\n\nReturns all lists.\n\n**Example response**\n\n```json\n[\n  {\n    \"boardId\": 123456789,\n    \"name\": \"Groceries\",\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faytekinkaplan%2Fadvanced_cypress_study","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faytekinkaplan%2Fadvanced_cypress_study","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faytekinkaplan%2Fadvanced_cypress_study/lists"}