An open API service indexing awesome lists of open source software.

https://github.com/testxio/docker-testx


https://github.com/testxio/docker-testx

Last synced: 3 months ago
JSON representation

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
```