Skipped 02-team and 03-moveconvert

This commit is contained in:
Diego Mello 2023-03-02 15:09:21 -03:00
parent 264774008b
commit 5d97979ec3
2 changed files with 3 additions and 3 deletions

View File

@ -92,7 +92,7 @@ describe('Team', () => {
await navigateToRoom(team);
});
describe('Team Room', () => {
describe.skip('Team Room', () => {
describe('Team Header', () => {
it('should have actions button ', async () => {
await expect(element(by.id('room-header'))).toExist();
@ -106,7 +106,7 @@ describe('Team', () => {
await expect(element(by.id('room-view-header-threads'))).toExist();
});
it('should have threads button ', async () => {
it('should have search button ', async () => {
await expect(element(by.id('room-view-search'))).toExist();
});
});

View File

@ -55,7 +55,7 @@ async function navigateToRoomActions(room: string) {
.withTimeout(5000);
}
describe('Move/Convert Team', () => {
describe.skip('Move/Convert Team', () => {
let alertButtonType: string;
let textMatcher: TTextMatcher;
let user: ITestUser;