The Jasmine Python package contains helper code for developing Jasmine projects for Python-based web projects (Django, Flask, etc.) or for JavaScript projects where Python is a welcome partner. It serves up a project's Jasmine suite in a browser so you can focus on your code instead of manually editing script tags in the Jasmine runner HTML file.
For documentation on writing Jasmine tests, check out the Jasmine Documentation site.
This package contains:
- A small server that builds and executes a Jasmine suite for a project
- A command line script to run your tests (handy for continuous integration)
You can get all of this by: pip install jasmine
or by adding jasmine
to your requirements.txt
.
To initialize a project for Jasmine:
$ jasmine-install
This will create a spec directory and configuration yaml template for you.
Customize spec/javascripts/support/jasmine.yml
to enumerate the source files, stylesheets, and spec files you would like the Jasmine runner to include.
You may use dir glob strings.
Start the Jasmine server:
$ jasmine
Point your browser to localhost:8888
. The suite will run every time this page is re-loaded.
Start Jasmine on a different port:
$ jasmine -p 1337
Point your browser to localhost:1337
.
For a full list of commands, type jasmine -h
For Continuous Integration environments, add this task to the project build steps:
$ jasmine-ci
The browser used by selenium can be changed by exporting JASMINE_BROWSER
$ export JASMINE_BROWSER=phantomjs
$ jasmine-ci
or adding --browser
to jasmine-ci
$ jasmine-ci --browser phantomjs
For a full list of commands, type jasmine-ci -h
- Get a python 2.7, 2.6, 3.4, 3.5 and pypy
- Get pip: http://www.pip-installer.org/en/latest/installing.html
- Get virtualenvwrapper: http://virtualenvwrapper.readthedocs.org/en/latest/
git clone
this repo- Make an environment:
mkvirtualenv jasminePy
- Use that environment:
workon jasminePy
- Install invoke
pip install invoke
- Install dependencies:
inv install
- Run specs:
detox
Jasmine Mailing list: [email protected] Twitter: @jasminebdd
Please file issues here at Github
Copyright (c) 2008-2014 Pivotal Labs. This software is licensed under the MIT License.