* MM-63411 Don't focus thread textbox automatically when it has a draft * Add E2E test * Add test files forgotten in previous commit --------- Co-authored-by: Mattermost Build <build@mattermost.com>
13 строки
418 B
TypeScript
13 строки
418 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
/// <reference types="cypress" />
|
|
|
|
declare namespace Cypress {
|
|
interface Chainer<Subject> {
|
|
(chainer: 'be.focusVisible', {exactStyles}: {exactStyles?: boolean}): Chainable<Subject>;
|
|
|
|
(chainer: 'not.be.focusVisible', {exactStyles}: {exactStyles?: boolean}): Chainable<Subject>;
|
|
}
|
|
}
|