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 describes:

fdescribe('very important functionality', () => {
  // ...
});