Skip to content

Commit

Permalink
include some temp test in files to avoid CI failure
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-tavares committed Jul 24, 2023
1 parent e640218 commit b622895
Show file tree
Hide file tree
Showing 2 changed files with 144 additions and 24 deletions.
Expand Up @@ -5,8 +5,7 @@
* 2.0.
*/

// FIXME:PT Delete when implemented
export {};
import { login } from '../../../tasks/login';

describe(
'User Roles for Security Complete PLI with Endpoint Complete addon',
Expand All @@ -21,24 +20,85 @@ describe(
},
},
() => {
// FIXME:PT implement
describe('for role: t1_analyst', () => {
before(() => {
login('t1_analyst');
});

describe('for role: t1_analyst', () => {});
// FIXME:PT implement
it('should do something', () => {});
});

describe('for role: t2_analyst', () => {});
describe('for role: t2_analyst', () => {
before(() => {
login('t2_analyst');
});

describe('for role: t3_analyst', () => {});
// FIXME:PT implement
it('should do something', () => {});
});

describe('for role: threat_intelligence_analyst', () => {});
describe('for role: t3_analyst', () => {
before(() => {
login('t3_analyst');
});

describe('for role: rule_author', () => {});
// FIXME:PT implement
it('should do something', () => {});
});

describe('for role: soc_manager', () => {});
describe('for role: threat_intelligence_analyst', () => {
before(() => {
login('threat_intelligence_analyst');
});

describe('for role: detections_admin', () => {});
// FIXME:PT implement
it('should do something', () => {});
});

describe('for role: platform_engineer', () => {});
describe('for role: rule_author', () => {
before(() => {
login('rule_author');
});

describe('for role: endpoint_operations_manager', () => {});
// FIXME:PT implement
it('should do something', () => {});
});

describe('for role: soc_manager', () => {
before(() => {
login('soc_manager');
});

// FIXME:PT implement
it('should do something', () => {});
});

describe('for role: detections_admin', () => {
before(() => {
login('detections_admin');
});

// FIXME:PT implement
it('should do something', () => {});
});

describe('for role: platform_engineer', () => {
before(() => {
login('platform_engineer');
});

// FIXME:PT implement
it('should do something', () => {});
});

describe('for role: endpoint_operations_manager', () => {
before(() => {
login('endpoint_operations_manager');
});

// FIXME:PT implement
it('should do something', () => {});
});
}
);
Expand Up @@ -5,8 +5,7 @@
* 2.0.
*/

// FIXME:PT Delete when implemented
export {};
import { login } from '../../../tasks/login';

describe(
'Roles for Security Essential PLI with Endpoint Essentials addon',
Expand All @@ -21,24 +20,85 @@ describe(
},
},
() => {
// FIXME:PT implement
describe('for role: t1_analyst', () => {
before(() => {
login('t1_analyst');
});

describe('for role: t1_analyst', () => {});
// FIXME:PT implement
it('should do something', () => {});
});

describe('for role: t2_analyst', () => {});
describe('for role: t2_analyst', () => {
before(() => {
login('t2_analyst');
});

describe('for role: t3_analyst', () => {});
// FIXME:PT implement
it('should do something', () => {});
});

describe('for role: threat_intelligence_analyst', () => {});
describe('for role: t3_analyst', () => {
before(() => {
login('t3_analyst');
});

describe('for role: rule_author', () => {});
// FIXME:PT implement
it('should do something', () => {});
});

describe('for role: soc_manager', () => {});
describe('for role: threat_intelligence_analyst', () => {
before(() => {
login('threat_intelligence_analyst');
});

describe('for role: detections_admin', () => {});
// FIXME:PT implement
it('should do something', () => {});
});

describe('for role: platform_engineer', () => {});
describe('for role: rule_author', () => {
before(() => {
login('rule_author');
});

describe('for role: endpoint_operations_manager', () => {});
// FIXME:PT implement
it('should do something', () => {});
});

describe('for role: soc_manager', () => {
before(() => {
login('soc_manager');
});

// FIXME:PT implement
it('should do something', () => {});
});

describe('for role: detections_admin', () => {
before(() => {
login('detections_admin');
});

// FIXME:PT implement
it('should do something', () => {});
});

describe('for role: platform_engineer', () => {
before(() => {
login('platform_engineer');
});

// FIXME:PT implement
it('should do something', () => {});
});

describe('for role: endpoint_operations_manager', () => {
before(() => {
login('endpoint_operations_manager');
});

// FIXME:PT implement
it('should do something', () => {});
});
}
);

0 comments on commit b622895

Please sign in to comment.