X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=DEVELOP.md;h=74363260d73cc1315465a2383498111ef01d38d7;hb=6833c463ec383edd9dd4051b7a4cb8de834e27d0;hp=71bf785b43af580c1b92c8bae9ed8d4c6330b614;hpb=3b083bd527ffb34cd7242e3a1198c98bfbb8401d;p=dygraphs.git diff --git a/DEVELOP.md b/DEVELOP.md index 71bf785..7436326 100644 --- a/DEVELOP.md +++ b/DEVELOP.md @@ -8,19 +8,25 @@ This is a step-by-step guide explaining how to do it. To build dygraphs, run - gulp dist + npm run build To run the tests, run: - gulp test + npm run build-tests + npm run test -To iterate on the code, open `tests/demo.html` (or one of the other demos) in your browser. +To iterate on the code, run: -To iterate on a unit test, change `it` to `it.only` in the Mocha test, change the browser from `PhantomJS` to `Chrome` (or whatever you like) and set `singleRun` to `false` in `auto_tests/karma.conf.js`. Then run + npm run watch - ./node_modules/karma/bin/karma start auto_tests/karma.conf.js +and open `tests/demo.html` (or one of the other demos) in your browser. -and hit "DEBUG" in the Karma UI. +To iterate on a unit test, run the `watch` command above and open + + auto_tests/runner.html + +in your browser. You can use the Mocha UI to run just a single test or suite. +Or you can change `it` to `it.only` to do run just one test in code. ### dygraphs style