SyntaxFix
Write A Post
Hire A Developer
Questions
Just use .only before 'describe', 'it' or 'context'. I run using "$npm run test:unit", and it executes only units with .only.
describe.only('get success', function() { // ... }); it.only('should return 1', function() { // ... });