Skip to content

Commit

Permalink
add before after
Browse files Browse the repository at this point in the history
Signed-off-by: Qingyang(Abby) Hu <abigailhu2000@gmail.com>
  • Loading branch information
abbyhu2000 committed Oct 11, 2023
1 parent ae461ca commit 5128d68
Show file tree
Hide file tree
Showing 20 changed files with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/*
* Copyright OpenSearch Contributors
* SPDX-License-Identifier: Apache-2.0
*/

/// <reference types="cypress" />

describe('Before', () => {
before(() => {
cy.deleteAllIndices();
cy.deleteSavedObjectByType('index-pattern');
});

it('setup completed', () => {});
});
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/*
* Copyright OpenSearch Contributors
* SPDX-License-Identifier: Apache-2.0
*/

/// <reference types="cypress" />

describe('After', () => {
before(() => {
cy.deleteAllIndices();
cy.deleteSavedObjectByType('index-pattern');
});

it('clean up complete', () => {});
});

0 comments on commit 5128d68

Please sign in to comment.