Add the ability to consume traits for use in VS2012.
http://blogs.msdn.com/b/visualstudioalm/archive/2012/11/20/part-2-using-traits-with-different-test-frameworks-in-the-unit-test-explorer.aspx
I'm still trying to work out how feasible this is. It may be possible to add trait information at the module and suite levels in QUnit and jasmine respectively:
```
module('Something', {
setup: function () {
},
traits: {
category: 'Category'
}
});
```
```
describe('Something', function () {
this.traits = {
category: 'Category'
}
beforeEach(function () {
});
});
```
Or maybe some custom JSON comment format?
```
/*{
"category": "Category"
}*/
```
I'm guessing the chutzpahRunner would need consume that information somehow during discovery.
http://blogs.msdn.com/b/visualstudioalm/archive/2012/11/20/part-2-using-traits-with-different-test-frameworks-in-the-unit-test-explorer.aspx
I'm still trying to work out how feasible this is. It may be possible to add trait information at the module and suite levels in QUnit and jasmine respectively:
```
module('Something', {
setup: function () {
},
traits: {
category: 'Category'
}
});
```
```
describe('Something', function () {
this.traits = {
category: 'Category'
}
beforeEach(function () {
});
});
```
Or maybe some custom JSON comment format?
```
/*{
"category": "Category"
}*/
```
I'm guessing the chutzpahRunner would need consume that information somehow during discovery.