* trying to run tests in FF
* run tests in PhantomJS first
* add chrome test run to travis
* Revert "add chrome test run to travis"
This reverts commit 933f7b5e038722b18b62180edfe4cf19aadc11ab.
* update Firefox test script in Travis CI
* use latest version of Firefox in TravisCI tests
* fix firefox artifact signature in travis config
* trying to set screen size with xvfb-run
* increase screen size
* remove DISPLAY env variable
* run `docs` via npm
* add shebang line to integrity.js, so npm will resolve node binary automatically
* remove unnecessary build-jake npm script
* add test.js script as replacement of Jakefile.js
* remove Jakefile, remove jake from devDependencies
* update docs
* move scripts to separate directory
* change shebang line from nodejs to js
* change shebang line from js to node
* update docs
* use Karma cli instead of custom test script
* add pretest and test-nolint scripts, remove lint scripts from travis.ci
Run linting scripts in pretest script, this way test script will automatically trigger code linting.
Add test-nolint script to have possibility to run tests without triggering pretest script with linting. This is useful when running tests in different browsers and tere's no sense to lint code more than one time
* replace shebang lines with node executable in npm scripts
* remove note about nodejs symlink in CONTRIBUTING.md
Currently, when we open a PR, Travis run twice: once because it's a
PR and once for the last commit of the PR.
This change will make Travis run for *commits* only when
made directly on master (which should not happen that much, but still
happen).
Of course, Travis will still be run for a PR, but only once.