Skip to content

Instantly share code, notes, and snippets.

@subtleGradient
Created June 22, 2009 16:41
Show Gist options
  • Save subtleGradient/134068 to your computer and use it in GitHub Desktop.
Save subtleGradient/134068 to your computer and use it in GitHub Desktop.
// # -- 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