mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
14 lines
440 B
JavaScript
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});
|
|
});
|