Fix data usage serverless test suite for MKI runs (#202106)

## Summary

This PR fixes the data usage serverless test suite for MKI runs by
excluding the custom roles sub-suite as custom roles testing is not
enabled for MKI at this point, see
[readme](https://github.com/elastic/kibana/blob/main/x-pack/test_serverless/README.md?plain=1#L214).
This commit is contained in:
Robert Oskamp 2024-11-28 11:50:34 +01:00 committed by GitHub
parent e9ee5b4765
commit db55819d1d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -57,8 +57,9 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
});
});
describe('with custom role', function () {
// custom roles aren't available in observability yet
this.tags(['skipSvlOblt']);
// skipSvlOblt: custom roles aren't available in observability yet
// skipMKI: custom roles aren't available in MKI testing yet
this.tags(['skipSvlOblt', 'skipMKI']);
afterEach(async () => {
await samlAuth.deleteCustomRole();
});