https://github.com/testxio/docker-testx
https://github.com/testxio/docker-testx
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/testxio/docker-testx
- Owner: testxio
- Created: 2015-12-08T11:58:21.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-01-14T09:41:01.000Z (over 9 years ago)
- Last Synced: 2025-03-06T00:44:32.897Z (about 1 year ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Run your [testx](http://testx.io/testx) tests like a baws!
To run with the default configuration file (conf.coffee) do:
```
docker run -v `pwd`:/work --rm testx/protractor
```
or specify a custom configuration file:
```
docker run -v `pwd`:/work --rm testx/protractor /some/other/test-config.coffee
```
It is possible to specify parameters as well. In this case the specifying to the config file is required:
```
docker run -v `pwd`:/work --rm testx/protractor conf.coffee --baseUrl=http://google.com
```
By default the screen resolution is 1280x1024 with 24-bit color. This can be changed via the SCREEN_RES env var:
```
docker run -v `pwd`:/work --rm -e SCREEN_RES=1920x1080x24 testx/protractor
```