Created
June 22, 2009 16:41
-
-
Save subtleGradient/134068 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// # -- sequential speccing | |
var group1 = spec.group('description'); | |
group1.add('some description', fn); | |
group1.add('some other description', fn); | |
var group2 = spec.group('description2'); | |
group2.add('some description', fn); | |
group2.add('some other description', fn); | |
spec.run(); //starts every group | |
group1.run(); //starts group1 | |
group2.run(); //starts group2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment