Commit 826c3ea319eed993281a1fe4351bef645bcf6ec3

Authored by Cyril Mougel
1 parent a3dbf209
Exists in master and in 1 other branch production

Add information in developper test about skipping js test

Showing 1 changed file with 9 additions and 0 deletions   Show diff stats
docs/DEVELOPER-ADVANCED.md
... ... @@ -20,3 +20,12 @@ After you just need launch the script with adapting runner of mongoid.
20 20  
21 21 In my case, the complete test suite down to 2min after a 16min long
22 22 before.
  23 +
  24 +## Avoid running acceptance test with phantomjs
  25 +
  26 +Some acceptance test use phantomjs to interpret the Javascript in page.
  27 +To avoid this test you can launch your test by skipping js tag
  28 +
  29 +```
  30 +bundle exec rspec spec --tag="~js"
  31 +```
... ...