Protractor can selectively run groups of tests using fdescribe() instead of describe().
fdescribe('first group',()=>{
it('only this test will run',()=>{
//code that will run
});
});
describe('second group',()=>{
it('this code will not run',()=>{
//code...