Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MM-58284] Confirmation when leaving a call #763

Merged
merged 10 commits into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
511 changes: 1 addition & 510 deletions e2e/.eslintrc.json

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions e2e/config.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import {expect, request} from '@playwright/test';
import {APIRequestContext} from 'playwright-core';

import {adminState, baseURL, pluginID} from './constants';
import {headers, newUserPage} from './utils';

type CallsConfig = {
enabletranscriptions?: boolean;
Expand Down
1 change: 1 addition & 0 deletions e2e/constants.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import {UserState} from './types';

// eslint-disable-next-line no-process-env
export const baseURL = process.env.MM_SITE_URL || 'http://localhost:8065';
export const defaultTeam = 'calls';
export const adminState: UserState = {
Expand Down
2 changes: 2 additions & 0 deletions e2e/global-setup.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* eslint-disable no-await-in-loop */

import {expect, FullConfig, request} from '@playwright/test';
import {readFile} from 'fs/promises';

Expand Down
2 changes: 2 additions & 0 deletions e2e/global-teardown.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* eslint-disable no-await-in-loop */

import {FullConfig} from '@playwright/test';
import * as fs from 'fs/promises';

Expand Down
Loading
Loading