{"id":20525884,"url":"https://github.com/wendreof/zombie-","last_synced_at":"2026-04-10T07:14:22.334Z","repository":{"id":44050833,"uuid":"218404996","full_name":"wendreof/zombie-","owner":"wendreof","description":":rocket: Automated testing in NodeJS, Docker, Jenkins, NightwatchJS and PostgreSQL. :rocket: ","archived":false,"fork":false,"pushed_at":"2022-12-10T07:15:18.000Z","size":1522,"stargazers_count":2,"open_issues_count":8,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-16T11:26:51.578Z","etag":null,"topics":["docker","jenkins","nightwatchjs","nodejs","pgadmin","postgresql","yarn"],"latest_commit_sha":null,"homepage":"","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/wendreof.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":"2019-10-29T23:47:41.000Z","updated_at":"2021-09-01T01:56:22.000Z","dependencies_parsed_at":"2023-01-26T04:31:19.578Z","dependency_job_id":null,"html_url":"https://github.com/wendreof/zombie-","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wendreof%2Fzombie-","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wendreof%2Fzombie-/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wendreof%2Fzombie-/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wendreof%2Fzombie-/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wendreof","download_url":"https://codeload.github.com/wendreof/zombie-/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242130188,"owners_count":20076572,"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":["docker","jenkins","nightwatchjs","nodejs","pgadmin","postgresql","yarn"],"created_at":"2024-11-15T23:10:45.128Z","updated_at":"2026-04-10T07:14:22.292Z","avatar_url":"https://github.com/wendreof.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ZombiePlus\n\n[![Twitter](https://img.shields.io/twitter/url?style=social\u0026url=https%3A%2F%2Ftwitter.com%2Fwendreolf)](https://twitter.com/intent/tweet?text=Wow:\u0026url=https%3A%2F%2Fgithub.com%2Fwendreof%2Fzombie-%2F)\n[![wakatime](https://wakatime.com/badge/github/wendreof/zombie-.svg)](https://wakatime.com/badge/github/wendreof/zombie-)\n[![GitHub issues](https://img.shields.io/github/issues/wendreof/zombie-)](https://github.com/wendreof/zombie-/issues)\n[![GitHub forks](https://img.shields.io/github/forks/wendreof/zombie-)](https://github.com/wendreof/zombie-/network)\n[![GitHub stars](https://img.shields.io/github/stars/wendreof/zombie-)](https://github.com/wendreof/zombie-/stargazers)\n[![GitHub license](https://img.shields.io/github/license/wendreof/zombie-)](https://github.com/wendreof/zombie-/blob/master/LICENSE)\n[![GitHub last commit](https://img.shields.io/github/last-commit/wendreof/zombie-)](https://github.com/wendreof/zombie-/commits/master)\n\n-------\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"#motivation\"\u003eMotivation\u003c/a\u003e \u0026bull;\n    \u003ca href=\"#installation\"\u003eInstallation\u003c/a\u003e \u0026bull;\n    \u003ca href=\"#starting\"\u003eStarting\u003c/a\u003e\n\u003c/p\u003e\n\n## Motivation\nThis repository is about automated tests in NodeJS with Docker, Jenkins and NightwatchJS framework.\n\n## Installation\n\nRunning containers\n- `docker run --name pgadmin --network=skynet -p 15432:80 -e \"PGADMIN_DEFAULT_EMAIL=root@qaninja.io\" -e \"PGADMIN_DEFAULT_PASSWORD=qaninja\" -d dpage/pgadmin4`\n\n- `docker run --name pgdb --network=skynet -e \"POSTGRES_PASSWORD=qaninja\" -p 5432:5432 -v var/lib/postgresql/data -d postgres`\n\n- `docker run --name zombie-api --network=skynet -e \"DATABASE=pgdb\" -p 3000:3000 -d papitoio/zombie-api`\n\n- `docker run --name zombie-web --network=skynet -e \"VUE_APP_API=http://localhost:3000\" -p 5000:5000 -d papitoio/zombie-web`\n\n- `docker run -u root  --rm  -d  -p 8080:8080  -p 50000:50000  -v jenkins-data:/var/jenkins_home   -v /var/run/docker.sock:/var/run/docker.sock  jenkinsci/blueocean`\n\n- `docker build -t wendreof/node-wd .`\n\n## Starting\n\nRunning containers\n- `docker start pgadmin`\n- `docker start pgdb`\n- `docker start zombie-api`\n- `docker start zombie-web`\n\nGeneral tests\n- `yarn test` Running all tests\n- `yarn run test:headless ` Running all tests in headless mode\n\nLogin tests\n- `yarn run test:login` Running login tests\n- `yarn run test:nologin` Running all except login tests\n\nSearch tests\n- `yarn run test:search` Running  search  tests\n- `yarn run test:nosearch` Running all except search tests\n\nSign-up tests\n- `yarn run test:sign-up` Running sign-up tests\n- `yarn run test:nosign-up` Running all except sign-up tests\n\n## License\nThis project is licensed under the terms of the MIT license. See the LICENSE file.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwendreof%2Fzombie-","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwendreof%2Fzombie-","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwendreof%2Fzombie-/lists"}