diff --git a/e2e/playwright/support/utils.ts b/e2e/playwright/support/utils.ts index 7e70768..f5aeb2a 100644 --- a/e2e/playwright/support/utils.ts +++ b/e2e/playwright/support/utils.ts @@ -1,10 +1,10 @@ // Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. -import type { Page } from "@playwright/test"; +import type {Page} from "@playwright/test"; import Client4 from "@mattermost/client/client4"; -import { UserProfile } from "@mattermost/types/users"; +import {UserProfile} from "@mattermost/types/users"; export const waitForNewMessages = async (page: Page) => { await page.waitForTimeout(1000); diff --git a/e2e/playwright/tests/test.list.ts b/e2e/playwright/tests/test.list.ts index b392594..e245f86 100644 --- a/e2e/playwright/tests/test.list.ts +++ b/e2e/playwright/tests/test.list.ts @@ -1,7 +1,7 @@ // Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. -import { test } from "@playwright/test"; +import {test} from "@playwright/test"; import core from "./todo_plugin.spec"; import "../support/init_test"; diff --git a/e2e/playwright/tests/todo_plugin.spec.ts b/e2e/playwright/tests/todo_plugin.spec.ts index 64834b4..9e726a4 100644 --- a/e2e/playwright/tests/todo_plugin.spec.ts +++ b/e2e/playwright/tests/todo_plugin.spec.ts @@ -6,13 +6,13 @@ // - [*] indicates an assertion (e.g. * Check the title) // *************************************************************** -import { expect, test } from "@e2e-support/test_fixture"; +import {expect, test} from "@e2e-support/test_fixture"; import SlashCommandSuggestions from "support/components/slash_commands"; import { - fillMessage, - getLastPost, - getTodoBotDMPageURL, - postMessage, + fillMessage, + getLastPost, + getTodoBotDMPageURL, + postMessage, } from "support/utils"; test.beforeEach(async ({ page, pw }) => {