Apply prettier formatting

This commit is contained in:
Michael Weimann 2022-12-12 12:24:14 +01:00
parent 1cac306093
commit 526645c791
No known key found for this signature in database
GPG key ID: 53F535A266BB9584
1576 changed files with 65385 additions and 62478 deletions

View file

@ -13,21 +13,21 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import { render } from '@testing-library/react';
import { LOCAL_NOTIFICATION_SETTINGS_PREFIX, MatrixEvent, Room } from 'matrix-js-sdk/src/matrix';
import { MatrixCall } from 'matrix-js-sdk/src/webrtc/call';
import React from 'react';
import { render } from "@testing-library/react";
import { LOCAL_NOTIFICATION_SETTINGS_PREFIX, MatrixEvent, Room } from "matrix-js-sdk/src/matrix";
import { MatrixCall } from "matrix-js-sdk/src/webrtc/call";
import React from "react";
import LegacyCallHandler from '../../src/LegacyCallHandler';
import LegacyCallHandler from "../../src/LegacyCallHandler";
import IncomingLegacyCallToast from "../../src/toasts/IncomingLegacyCallToast";
import DMRoomMap from '../../src/utils/DMRoomMap';
import { getMockClientWithEventEmitter, mockClientMethodsServer, mockClientMethodsUser } from '../test-utils';
import DMRoomMap from "../../src/utils/DMRoomMap";
import { getMockClientWithEventEmitter, mockClientMethodsServer, mockClientMethodsUser } from "../test-utils";
describe('<IncomingLegacyCallToast />', () => {
const userId = '@alice:server.org';
const deviceId = 'my-device';
describe("<IncomingLegacyCallToast />", () => {
const userId = "@alice:server.org";
const deviceId = "my-device";
jest.spyOn(DMRoomMap, 'shared').mockReturnValue({
jest.spyOn(DMRoomMap, "shared").mockReturnValue({
getUserIdForRoomId: jest.fn(),
} as unknown as DMRoomMap);
@ -36,7 +36,7 @@ describe('<IncomingLegacyCallToast />', () => {
...mockClientMethodsServer(),
getRoom: jest.fn(),
});
const mockRoom = new Room('!room:server.org', mockClient, userId);
const mockRoom = new Room("!room:server.org", mockClient, userId);
mockClient.deviceId = deviceId;
const call = new MatrixCall({ client: mockClient, roomId: mockRoom.roomId });
@ -51,18 +51,18 @@ describe('<IncomingLegacyCallToast />', () => {
mockClient.getRoom.mockReturnValue(mockRoom);
});
it('renders when silence button when call is not silenced', () => {
it("renders when silence button when call is not silenced", () => {
const { getByLabelText } = render(getComponent());
expect(getByLabelText('Silence call')).toMatchSnapshot();
expect(getByLabelText("Silence call")).toMatchSnapshot();
});
it('renders sound on button when call is silenced', () => {
it("renders sound on button when call is silenced", () => {
LegacyCallHandler.instance.silenceCall(call.callId);
const { getByLabelText } = render(getComponent());
expect(getByLabelText('Sound on')).toMatchSnapshot();
expect(getByLabelText("Sound on")).toMatchSnapshot();
});
it('renders disabled silenced button when call is forced to silent', () => {
it("renders disabled silenced button when call is forced to silent", () => {
// silence local notifications -> force call ringer to silent
mockClient.getAccountData.mockImplementation((eventType) => {
if (eventType.includes(LOCAL_NOTIFICATION_SETTINGS_PREFIX.name)) {
@ -75,6 +75,6 @@ describe('<IncomingLegacyCallToast />', () => {
}
});
const { getByLabelText } = render(getComponent());
expect(getByLabelText('Notifications silenced')).toMatchSnapshot();
expect(getByLabelText("Notifications silenced")).toMatchSnapshot();
});
});