* MM-30286 Detox/E2E: Add e2e test for MM-T3222 and some cleanup * Fix merge issues * Fix more issues * Fixed new line * Remove redundant check * Updated instance to getElement Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
17 lines
443 B
JavaScript
17 lines
443 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {Post} from '@support/ui/component';
|
|
|
|
class LongPostScreen {
|
|
testID = {
|
|
longPostScreenPrefix: 'long_post.',
|
|
}
|
|
|
|
getPost = (postId, text) => {
|
|
return Post.getPost(this.testID.longPostScreenPrefix, postId, text);
|
|
}
|
|
}
|
|
|
|
const longPostScreen = new LongPostScreen();
|
|
export default longPostScreen;
|