mattermost-mobile/detox/e2e/support/ui/screen/long_post.js
Joseph Baylon 4f668f0fdf
MM-30286 Detox/E2E: Add e2e test for MM-T3222 and some cleanup (#4959)
* 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>
2020-11-17 10:52:03 -08:00

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;