https://github.com/hypery2k/galenframework-cli
NPM wrapper for galenframework
https://github.com/hypery2k/galenframework-cli
Last synced: 16 days ago
JSON representation
NPM wrapper for galenframework
- Host: GitHub
- URL: https://github.com/hypery2k/galenframework-cli
- Owner: hypery2k
- License: mit
- Created: 2015-04-24T06:31:38.000Z (about 10 years ago)
- Default Branch: develop
- Last Pushed: 2025-05-31T07:23:28.000Z (about 1 month ago)
- Last Synced: 2025-06-01T10:13:53.908Z (30 days ago)
- Language: JavaScript
- Size: 1.75 MB
- Stars: 17
- Watchers: 2
- Forks: 7
- Open Issues: 32
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Galenframework commandline helpers
[Galen](http://galenframework.com) allows automated testing of look and feel for your responsive websites.
[](https://travis-ci.org/hypery2k/galenframework-cli)
[](https://ci.appveyor.com/project/hypery2k/galenframework-cli/branch/master)
[](LICENSE)
[](https://codeclimate.com/github/hypery2k/galenframework-cli)
[](https://coveralls.io/github/hypery2k/galenframework-cli?branch=master)The [core](core/) module is just the node wrapper (NodeJS 8+) for [Galen](http://galenframework.com) and can be used within CI environments
[](https://snyk.io/test/github/hypery2k/galenframework-cli?targetFile=core%2Fpackage.json)
The [cli](cli/) module is a command line module (NodeJS 8+) for [Galen](http://galenframework.com). This includes the core above and webdriver downloads for different browsers. You can also use the [docker image](https://hub.docker.com/r/galenframework/cli/) for easier setup.
[](https://snyk.io/test/github/hypery2k/galenframework-cli?targetFile=cli%2Fpackage.json) [](https://hub.docker.com/r/galenframework/cli/)
## Donation
Feel free to [donate via Paypal](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=H8TR8246RCDJG) or [Bitcoins ](bitcoin:3NKtxw1SRYgess5ev4Ri54GekoAgkR213D): bitcoin:3NKtxw1SRYgess5ev4Ri54GekoAgkR213D
[](bitcoin:3NKtxw1SRYgess5ev4Ri54GekoAgkR213D)
Also via [greenaddress](https://greenaddress.it/pay/GA3ZPfh7As3Gc2oP6pQ1njxMij88u/)## Docker
### Usage
```
docker run -v $(pwd)/galenframework-cli/core/test/:/var/test_scripts galenframework/cli galen test /var/test_scripts/...
```### Troubleshooting
npm install throws "cannot access parent directories: Permission denied":
```
npm config set user 0
npm config set unsafe-perm true
```