Tone.js/test
2018-05-18 12:09:35 -04:00
..
audio additional NoiseSynth tests 2018-04-25 10:29:07 -04:00
component pointing at correct helper/Test 2018-05-18 12:07:20 -04:00
control linting 2017-12-30 11:26:29 -05:00
core pointing at correct helper/Test 2018-05-18 12:07:20 -04:00
deps compare rendered output to previously rendered audio files 2018-02-05 13:55:37 -05:00
effect adjusting test threshs to be less susceptible to randomness 2018-01-17 13:40:18 -05:00
event pointing at correct helper/Test 2018-05-18 12:07:20 -04:00
examples pointing at correct helper/Test 2018-05-18 12:07:20 -04:00
helper pointing at correct helper/Test 2018-05-18 12:07:20 -04:00
instrument pointing at correct helper/Test 2018-05-18 12:07:20 -04:00
signal pointing at correct helper/Test 2018-05-18 12:07:20 -04:00
source pointing at correct helper/Test 2018-05-18 12:07:20 -04:00
type pointing at correct helper/Test 2018-05-18 12:07:20 -04:00
index.html updated test template html 2018-05-18 12:09:25 -04:00
README.md only using karma test runner with headless chrome 2017-06-29 17:31:10 -04:00

I am currently using two test runners: mocha and karma + mocha.

From within the gulp folder, run gulp karma-test to collect all of the files, launch a local server and run the tests.

Be sure that the browser window is in focus while tests are running.

Individual files can be tested by running gulp collectTests -f [Tone class name] which will update the test/Main.js with the given class' tests. You can then refresh the test/index.html page to rerun those tests.

You can also test groups of classes by folder by adding another flag. For example to test all of the signals run gulp collectTests --signal. or the shorthand form: gulp collectTests -s.

  • -s = --signal
  • -i = --instrument
  • -o = --source
  • -v = --event
  • -e = --effect
  • -c = --core
  • -m = --component
  • -t = --control

The tests target the latest specification and not any specific browser. I have been keeping a list of which features browsers/versions currently support in test/helper/Supports.js. Some tests are only conditionally run if that feature is supported on the platform.