scratch-www/test/integration/README.md

25 lines
1.4 KiB
Markdown
Raw Normal View History

# Requirements
* Selenium
* See this directory's package.json
* TAP
* In the scratch-www repo's package.json
2017-12-14 17:36:15 -05:00
* [Chromedriver](https://sites.google.com/a/chromium.org/chromedriver/)
# Running the tests
* By default, tests run against our Staging instance, but you can pass in a different location if you want to run the tests against e.g. your local build
## Using tap
2017-11-14 09:28:25 -05:00
* Run all tests in the smoke-testing directory from the command-line: `$ SMOKE_USERNAME=username SMOKE_PASSWORD=password ROOT_URL=https://scratch.mit.edu make smoke`
* To run a single file from the command-line: `$ SMOKE_USERNAME=username SMOKE_PASSWORD=password ROOT_URL=https://scratch.mit.edu node_modules/.bin/tap ./test/integration/smoke-testing/filename.js --timeout=3600`
* The timeout var is for the length of the entire tap test-suite; if you are getting a timeout error, you may need to adjust this value (some of the Selenium tests take a while to run)
### Configuration
| Variable | Default | Description |
| --------------------- | --------------------- | --------------------------------------------------------- |
2017-11-14 09:28:25 -05:00
| `ROOT_URL` | `scratch.ly` | Location you want to run the tests against
| `SMOKE_USERNAME` | `None` | Username for Scratch user you're signing in with to test |
| `SMOKE_PASSWORD` | `None` | Password for Scratch user you're signing in with to test |