brackets/test
Jason San Jose 32869fef61 Use closure for testWindow 2012-01-13 14:36:06 -08:00
..
lib Remove JsTestDriver 2011-12-12 12:59:49 -08:00
spec Use closure for testWindow 2012-01-13 14:36:06 -08:00
README.md Remove hard coded paths 2011-12-14 11:00:44 -08:00
SpecRunner.html First pass at modularization 2012-01-04 17:27:47 -08:00
SpecRunner.js Launch UI tests in new, clean window 2012-01-13 14:34:58 -08:00
jasmine.sh Allow jasmine.sh to run from any working directory 2011-12-12 15:19:35 -08:00

README.md

Overview

Unit testing for brackets uses Jasmine http://pivotal.github.com/jasmine/.

Getting started

Running Tests

2 options for running tests:

  1. Run brackets-app and click "Run Tests" from the menu (debugging and dev tools not supported)
  2. Run jasmine.sh or manually run Brackets-app with the argument file://path/to/brackets/test/SpecRunner.html.

Adding New Tests

  1. Create a new .js file under spec/
  2. Write the test (see spec/Editor-test.js or Jasmine documentation)
  3. Edit SpecRunner.html and add the spec .js file in a new script tag

Known Issues

None