Skip to content

Commit

Permalink
PR Comments
Browse files Browse the repository at this point in the history
  • Loading branch information
logeekal committed Oct 16, 2024
1 parent 36745eb commit ffcf5ee
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
import { FtrProviderContextWithSpaces } from '../../../../ftr_provider_context_with_spaces';

export default function ({ loadTestFile }: FtrProviderContextWithSpaces) {
// Failed in serverless: https://github.com/elastic/kibana/issues/183645
describe('@ess @serverless SecuritySolution Timeline - Trial', () => {
describe('@ess @serverless SecuritySolution Timeline', () => {
loadTestFile(require.resolve('./events'));
loadTestFile(require.resolve('./timeline_details'));
loadTestFile(require.resolve('./timeline'));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,16 +60,20 @@ export default function ({ getService }: FtrProviderContextWithSpaces) {
).to.equal(0);
});
});
/**
* Migration of saved object not working to current serverless version
* https://github.com/elastic/kibana/issues/196483
* */
describe.skip('resolve timeline', () => {
before(async () => {
await esArchiver.load(
'x-pack/test/functional/es_archives/security_solution/timelines/8.8.0'
'x-pack/test/functional/es_archives/security_solution/timelines/7.15.0'
);
});

after(async () => {
await esArchiver.unload(
'x-pack/test/functional/es_archives/security_solution/timelines/8.8.0'
'x-pack/test/functional/es_archives/security_solution/timelines/7.15.0'
);
});

Expand Down

0 comments on commit ffcf5ee

Please sign in to comment.