Tone.js/test
2018-01-03 15:30:44 -05:00
..
audio using rest of effects tests on Convolver 2016-08-09 14:25:20 -04:00
component checking for discontinuities with different curve types 2018-01-03 15:23:20 -05:00
control linting 2017-12-30 11:26:29 -05:00
core returning a promise defers the rendering till the promise has resolved 2018-01-03 12:02:10 -05:00
deps linting 2017-12-30 11:26:29 -05:00
effect testing setting AutoWah values 2018-01-03 15:22:52 -05:00
event linting 2017-12-30 11:26:29 -05:00
examples linting 2017-12-30 11:26:29 -05:00
helper returning promise to OfflineTest defers the callback of 'render' 2018-01-03 12:03:41 -05:00
instrument linting 2017-12-30 11:26:29 -05:00
signal testing exponential approach and cancelScheduledValues 2018-01-03 15:30:44 -05:00
source Source sync and start after Transport is already running 2018-01-02 10:35:39 -05:00
type increasing Midi conversion tests 2017-12-29 13:14:02 -05:00
.jshintrc adding "before" and "context" 2015-08-18 17:08:48 -04:00
index.html silence version logging in tests 2017-11-29 15:23:20 -05:00
karmaTest.js adding polyfill 2017-12-30 00:30:52 -05: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.