scratch-www/test/integration
2017-12-14 17:35:04 -05:00
..
smoke-testing Merge pull request #1626 from jwzimmer/issue/add-signing-out 2017-11-15 15:42:46 -05:00
teacher-registration Update tests with the right xpath for error messages (nested span for translation) 2017-01-03 12:16:17 -05:00
package.json Scratch itch 2017-11-15 13:33:30 -05:00
README.md update read me for automated tests 2017-11-14 09:28:25 -05:00

Requirements

  • Selenium
    • See this directory's package.json
  • TAP
    • In the scratch-www repo's package.json
  • Currently, we also require that you download Chromedriver, but this will be replaced by Saucelabs eventually

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

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

Using sauce

  • Not yet set up