Define focused specs in Jasmine
If you want to run a single Jasmine test case, you can “focus” it with fit
:
fit('does stuff', () => {
// ...
});
Actually, you can do the same with describe
s:
fdescribe('very important functionality', () => {
// ...
});