Skip to content

Commit 4d5aa70

Browse files
reverted prettier changes
1 parent 0f78845 commit 4d5aa70

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

e2e/playwright/support/utils.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
22
// See LICENSE.txt for license information.
33

4-
import type { Page } from "@playwright/test";
4+
import type {Page} from "@playwright/test";
55

66
import Client4 from "@mattermost/client/client4";
7-
import { UserProfile } from "@mattermost/types/users";
7+
import {UserProfile} from "@mattermost/types/users";
88

99
export const waitForNewMessages = async (page: Page) => {
1010
await page.waitForTimeout(1000);

e2e/playwright/tests/test.list.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
22
// See LICENSE.txt for license information.
33

4-
import { test } from "@playwright/test";
4+
import {test} from "@playwright/test";
55
import core from "./todo_plugin.spec";
66

77
import "../support/init_test";

e2e/playwright/tests/todo_plugin.spec.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
// - [*] indicates an assertion (e.g. * Check the title)
77
// ***************************************************************
88

9-
import { expect, test } from "@e2e-support/test_fixture";
9+
import {expect, test} from "@e2e-support/test_fixture";
1010
import SlashCommandSuggestions from "support/components/slash_commands";
1111
import {
12-
fillMessage,
13-
getLastPost,
14-
getTodoBotDMPageURL,
15-
postMessage,
12+
fillMessage,
13+
getLastPost,
14+
getTodoBotDMPageURL,
15+
postMessage,
1616
} from "support/utils";
1717

1818
test.beforeEach(async ({ page, pw }) => {

0 commit comments

Comments
 (0)