Skip to content

Commit

Permalink
Remove duplicated es_archive thanks to new cypress task functionality
Browse files Browse the repository at this point in the history
In elastic#178724, we added the ability to retrieve archives from another
location (namely, where our FTR archives live). This allows me to delete
the duplicated archive specific for the cypress usage, and share the FTR
archive between both. Nice!
  • Loading branch information
rylnd committed Mar 15, 2024
1 parent c970f74 commit 7ac409a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 72 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -186,11 +186,11 @@ describe('EQL rules', { tags: ['@ess', '@serverless'] }, () => {

describe('with source data requiring EQL overrides', () => {
before(() => {
cy.task('esArchiverLoad', { archiveName: 'no_at_timestamp_field' });
cy.task('esArchiverLoad', { archiveName: 'no_at_timestamp_field', type: 'ftr' });
});

after(() => {
cy.task('esArchiverUnload', 'no_at_timestamp_field');
cy.task('esArchiverUnload', { archiveName: 'no_at_timestamp_field', type: 'ftr' });
});

it('includes EQL options in query validation', () => {
Expand Down

This file was deleted.

This file was deleted.

0 comments on commit 7ac409a

Please sign in to comment.