It would be great if there was some way for tests to specify traits like VS UnitTesting traits. E.g.
// { testCategory: 'Functional', testProperties: [['Speed', 'Slow'], ...] }
it('does passes the functional test, though a little slowly', func...)
Any idea how hard this would be to implement?
[TestMethod]
[TestCategory("Functional")]
[TestProperty("Speed", "Slow")]
Maybe a syntax like// { testCategory: 'Functional', testProperties: [['Speed', 'Slow'], ...] }
it('does passes the functional test, though a little slowly', func...)
Any idea how hard this would be to implement?