mattermost/e2e-tests/cypress/tests/support/shell.js
2023-03-28 18:10:00 +02:00

14 lines
440 B
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
Cypress.Commands.add('shellFind', (path, pattern) => {
return cy.task('shellFind', {path, pattern});
});
Cypress.Commands.add('shellRm', (option, file) => {
return cy.task('shellRm', {option, file});
});
Cypress.Commands.add('shellUnzip', (source, target) => {
return cy.task('shellUnzip', {source, target});
});