forked from Ivasoft/mattermost-mobile
Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2aa1265762 | |||
| 565c19ca64 | |||
| b4acbef5f5 | |||
| 0a766bfb65 | |||
| b7cc411c3b | |||
| 04b35959a3 | |||
| e639e69d46 | |||
|
|
07aa748cd7 |
29
.drone.yml
Normal file
29
.drone.yml
Normal file
@@ -0,0 +1,29 @@
|
||||
kind: pipeline
|
||||
name: default
|
||||
|
||||
steps:
|
||||
- name: permissions
|
||||
image: alpine/git
|
||||
commands:
|
||||
- chmod -R 777 .
|
||||
|
||||
#- name: build
|
||||
# image: cimg/android:2022.09.2-node
|
||||
# environment:
|
||||
# CIRCLECI: true
|
||||
# NODE_OPTIONS: --max_old_space_size=12000
|
||||
# NODE_ENV: production
|
||||
# BABEL_ENV: production
|
||||
# MATTERMOST_RELEASE_STORE_FILE: /root/mattermost.keystore
|
||||
# MATTERMOST_RELEASE_KEY_ALIAS: mattermost-google-key
|
||||
# MATTERMOST_RELEASE_PASSWORD: 123456
|
||||
# commands:
|
||||
# - 'npm run build:android'
|
||||
|
||||
- name: gitea_release
|
||||
image: plugins/gitea-release
|
||||
settings:
|
||||
api_key:
|
||||
from_secret: repo_pass
|
||||
base_url: https://git.ivasoft.cz
|
||||
files: package.json
|
||||
@@ -82,7 +82,6 @@ describe('Channels - Channel List', () => {
|
||||
// * Verify on first channel
|
||||
await ChannelScreen.toBeVisible();
|
||||
await expect(ChannelScreen.headerTitle).toHaveText(testChannel.display_name);
|
||||
await expect(ChannelScreen.introDisplayName).toHaveText(testChannel.display_name);
|
||||
|
||||
// # Go back to channel list screen and tap on a second channel
|
||||
await ChannelScreen.back();
|
||||
@@ -92,7 +91,15 @@ describe('Channels - Channel List', () => {
|
||||
// * Verify on second channel
|
||||
await ChannelScreen.toBeVisible();
|
||||
await expect(ChannelScreen.headerTitle).toHaveText('Off-Topic');
|
||||
await expect(ChannelScreen.introDisplayName).toHaveText('Off-Topic');
|
||||
|
||||
// # Go back to channel list screen and tap on a third channel
|
||||
await ChannelScreen.back();
|
||||
await ChannelListScreen.toBeVisible();
|
||||
await ChannelListScreen.getChannelItemDisplayName(channelsCategory, townSquareChannelName).tap();
|
||||
|
||||
// * Verify on third channel
|
||||
await ChannelScreen.toBeVisible();
|
||||
await expect(ChannelScreen.headerTitle).toHaveText('Town Square');
|
||||
|
||||
// # Go back to channel list screen
|
||||
await ChannelScreen.back();
|
||||
|
||||
Reference in New Issue
Block a user