X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=DEVELOP.md;h=9a13888c99bb1e9aefb560f3b68856763c7566b1;hb=91bd611cb031bf1f3d39650e3109135fd0e78791;hp=8ddf0241b9075b90dcba180a08ecd7e4a09903ed;hpb=72d29646dc7a37e92efc2f749ea8e59c6e5f24d5;p=dygraphs.git diff --git a/DEVELOP.md b/DEVELOP.md index 8ddf024..9a13888 100644 --- a/DEVELOP.md +++ b/DEVELOP.md @@ -8,19 +8,31 @@ 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. Then run + npm run watch - ./node_modules/karma/bin/karma start auto_tests/chrome.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. + +To run a single test from the command line, you can use: + + npm run test -- --grep highlight-series-background + +(Note the extra `--`.) ### dygraphs style