How do I run only Test 3 from the following tests?
Test 3
module.exports = { \'Test 1\':function(){}, \'Test 2\':function(){} \'Test 3\':function(){}
Another possible way of doing so, would be to use the following on each test case that you want to omit:
'@disabled': true,
This can simply be set to false or removed if you wish to test it.