This project is based on an auto-generated conversion of the official CFML TextMate Bundle, and is under active development.
Pull requests welcome.
- Command line: Run
apm test
from the package directory. - Atom:
- Open the package in Atom.
- Choose
Run Package Specs
fromView -> Developer
, the Command Pallete, or the keyboard shortcut.
- Create an
it('test description', function() {});
that describes the scenario. - Tokenize the line, e.g.
var tokens = grammar.tokenizeLines('<cfcomponent name="Test Component">');
- Make assertions about what classes the line should have. (I usually
console.log(tokens);
to see what is coming and add new selectors where I think they should be.) - Submit a pull request with your new test(s). You don't even have to fix the bug (though it would be awesome if you can)!