From 7f9aecc2d903e8c3310af3e73dd1deaee08588e3 Mon Sep 17 00:00:00 2001 From: David Wyde Date: Tue, 2 Apr 2013 17:33:17 -0500 Subject: [PATCH] Add a README for CasperJS tests. --- .../frontend/html/notebook/tests/casperjs/README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 IPython/frontend/html/notebook/tests/casperjs/README.md diff --git a/IPython/frontend/html/notebook/tests/casperjs/README.md b/IPython/frontend/html/notebook/tests/casperjs/README.md new file mode 100644 index 000000000..c0b99c2b2 --- /dev/null +++ b/IPython/frontend/html/notebook/tests/casperjs/README.md @@ -0,0 +1,13 @@ +Regression tests for the web notebook. These tests depend on +[CasperJS](http://casperjs.org/), which in turn requires +a recent version of [PhantomJS](http://phantomjs.org/). + +Run the tests: + +```sh +/path/to/bin/casperjs test --includes=util.js test_cases +``` + +The file `util.js` contains utility functions for tests, +including a hardcoded path to a running notebook server +(http://127.0.0.1:8888 by default).