Is there a way to skip a unit test suite in Angular?
If you're looking to skip tests, it's 'x' in front of describe() or it():
xdescribe('some test', () => { });
And maybe just skip a test in a block:
describe('some other test', () => {
xit('skip this test', () => { });
});