{"id":15295849,"url":"https://github.com/helloworld-pc/django-cypress","last_synced_at":"2025-04-13T18:34:20.594Z","repository":{"id":200671526,"uuid":"653107500","full_name":"HelloWorld-PC/django-cypress","owner":"HelloWorld-PC","description":"Out-of-the-box end-to-end testing for Django","archived":false,"fork":false,"pushed_at":"2024-02-02T09:34:41.000Z","size":120,"stargazers_count":13,"open_issues_count":11,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-27T09:12:39.098Z","etag":null,"topics":["cypress","cypress-plugin","django","django-application"],"latest_commit_sha":null,"homepage":"https://django-cypress.helloworldpc.com","language":"Python","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/HelloWorld-PC.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-06-13T12:21:17.000Z","updated_at":"2024-09-04T18:57:33.000Z","dependencies_parsed_at":"2023-11-02T20:32:25.530Z","dependency_job_id":null,"html_url":"https://github.com/HelloWorld-PC/django-cypress","commit_stats":null,"previous_names":["helloworld-pc/django-cypress"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HelloWorld-PC%2Fdjango-cypress","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HelloWorld-PC%2Fdjango-cypress/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HelloWorld-PC%2Fdjango-cypress/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HelloWorld-PC%2Fdjango-cypress/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HelloWorld-PC","download_url":"https://codeload.github.com/HelloWorld-PC/django-cypress/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248761025,"owners_count":21157476,"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":["cypress","cypress-plugin","django","django-application"],"created_at":"2024-09-30T18:08:24.518Z","updated_at":"2025-04-13T18:34:20.560Z","avatar_url":"https://github.com/HelloWorld-PC.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# django-cypress\n\nThis package provides the necessary boilerplate to quickly begin \ntesting your Django applications using Cypress.\n\n## Table of contents\n- [Installation](#installation)\n- [Example project](#example-project)\n- [License](#license)\n\n## Installation\n\nThe first step is to install [Cypress](https://www.cypress.io/) as a development dependency.\n```\nnpm install cypress --save-dev\n```\n\nInstall the `django_cypress` package.\n```\npip install django_cypress\n```\n\nAdd the `django_cypress` app to the `INSTALLED_APPS` to the `settings.py` file:\n```python\nINSTALLED_APPS = [\n    ...\n    'django_cypress'\n    ...\n]\n```\n\nInclude the URLs of the `django_cypress` app to the `urls.py` file.\n```python\nurlpatterns = [\n    path(\"\", include(\"django_cypress.urls\")),\n]\n```\n\nGenerate the Cypress boilerplate to copy over the initial boilerplate files for your Cypress tests.\n```\npython manage.py cypress_boilerplate\n```\n\nWe have provided a `e2e/example.cy.js` spec for you as an example. Open Cypress.\n```\nnpx cypress open\n```\nIn the Cypress window that appears, select \"E2E Testing,\" followed by\n\"Start E2E Testing in Chrome.\" This action will display a list of all \nthe specs in your application. Click on `example.cy.js` to execute it.\n\n## Example Project\n\nIf you're having difficulties setting up a project using `django_cypress`, \nthere is an example project that you can refer to [here](./example).\nInstructions on running this example project are available in \nthis [README.md](./example/README.md) file.\n\n## License\nThe MIT License (MIT). Please see [License File](./LICENSE) for more information.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhelloworld-pc%2Fdjango-cypress","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhelloworld-pc%2Fdjango-cypress","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhelloworld-pc%2Fdjango-cypress/lists"}