[FIPS] Skips license check test for FIPS test suite (#216056)

## Summary

Skips license checking test in FIPS mode. FIPS runs with the platinum
license so having a test which asserts `basic` causes the CI to fail.

---------

Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
This commit is contained in:
Sid 2025-04-01 23:23:35 +02:00 committed by GitHub
parent 539f77f816
commit 1fdf5d450f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -42,7 +42,9 @@ export default function (ftrContext: FtrProviderContext) {
});
};
describe('changes in license types', () => {
describe('changes in license types', function () {
this.tags('skipFIPS');
before(async function setup() {
await scenario.setup();
});