silverstripe-framework/thirdparty/jasmine-jstd-adapter
Ingo Schommer ce8e72cf0e MINOR Removing executable flag from all files (thanks miiihi) 2011-09-18 22:04:02 +02:00
..
src MINOR Added jasmine-jstd-adapter dependency 2011-03-22 18:05:43 +13:00
src-test MINOR Added jasmine-jstd-adapter dependency 2011-03-22 18:05:43 +13:00
.piston.yml MINOR Added jasmine-jstd-adapter dependency 2011-03-22 18:05:43 +13:00
MIT.LICENSE MINOR Added jasmine-jstd-adapter dependency 2011-03-22 18:05:43 +13:00
README.md MINOR Added jasmine-jstd-adapter dependency 2011-03-22 18:05:43 +13:00
jsTestDriver.conf MINOR Added jasmine-jstd-adapter dependency 2011-03-22 18:05:43 +13:00
server.sh MINOR Removing executable flag from all files (thanks miiihi) 2011-09-18 22:04:02 +02:00
test.sh MINOR Removing executable flag from all files (thanks miiihi) 2011-09-18 22:04:02 +02:00

README.md

Jasmine Adapter for JsTestDriver

Author

Requirements

Usage

Create, or update, a jstestdriver.conf file (see wiki page for more info).

Update your jstestdriver.conf by prepending the jasmine library and the adapter's source files.

For example:

load:
- "../jasmine/lib/jasmine-0.10.0.js"
- "../JasmineAdapter/src/*"
- "your_source_files.js"
- "your_test_files.js"

Copy server.sh and test.sh (included) to your working directory, for convenience.

# copy
cp /path/to/jasmine-jstestdriver-adapter/*.sh ./

First: run server.sh and supply -p, for port, and -j, path to jstestdriver.jar or follow the convention defined in the .sh scripts (see Caveats below).

Open up http://localhost:9876/capture (update for your port) in any browser.

Finally: run test.sh to test all tests (specs) included with the jstestdriver.conf. Optionally pass a -j and -t arguments to test.sh to set the path to jstestdriver.jar and any test you'd only like to run, respectively.

Directory Layout

  • src: The adapter source code. Intent is to match interface with interface.
  • src-test: The test files that verifies that the adapter works as intended.

Caveats

jsTestDriver.conf and *.sh files

The files located in this repo assume that the parent folder has the jasmine source and a jstestdriver compiled available.

Update the paths, or pass arguments (as explained above), to reflect your own layout if you'd like to test the adapter.