Skip to content

Commit

Permalink
15839 - Fixed linting
Browse files Browse the repository at this point in the history
  • Loading branch information
penny-lischer committed Sep 12, 2024
1 parent 3a2fc7c commit 62943c3
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion frontend-react/e2e/pages/authenticated/organization.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {expect, Page} from "@playwright/test";
import { expect } from "@playwright/test";
import { RSOrganizationSettings } from "../../../src/config/endpoints/settings";
import { MOCK_GET_ORGANIZATION_SETTINGS_LIST } from "../../mocks/organizations";
import { BasePage, BasePageTestArgs, type RouteHandlerFulfillEntry } from "../BasePage";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import {expect} from "@playwright/test";
import {readFileSync} from "node:fs";
import {join} from "node:path";
import {fileURLToPath} from "node:url";
import {MOCK_GET_ORGANIZATION_SETTINGS_LIST} from "../../../../mocks/organizations";
import {OrganizationPage} from "../../../../pages/authenticated/organization";
import {test as baseTest} from "../../../../test";
import { expect } from "@playwright/test";
import { readFileSync } from "node:fs";
import { join } from "node:path";
import { fileURLToPath } from "node:url";
import { MOCK_GET_ORGANIZATION_SETTINGS_LIST } from "../../../../mocks/organizations";
import { OrganizationPage } from "../../../../pages/authenticated/organization";
import { test as baseTest } from "../../../../test";

const __dirname = fileURLToPath(import.meta.url);

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import {expect} from "@playwright/test";
import {tableRows} from "../../../helpers/utils";
import {MOCK_GET_ORGANIZATION_SETTINGS_LIST} from "../../../mocks/organizations";
import {OrganizationPage} from "../../../pages/authenticated/organization";
import {test as baseTest} from "../../../test";
import { expect } from "@playwright/test";
import { tableRows } from "../../../helpers/utils";
import { MOCK_GET_ORGANIZATION_SETTINGS_LIST } from "../../../mocks/organizations";
import { OrganizationPage } from "../../../pages/authenticated/organization";
import { test as baseTest } from "../../../test";


export interface OrganizationPageFixtures {
Expand Down Expand Up @@ -38,7 +38,7 @@ const test = baseTest.extend<OrganizationPageFixtures>({
},
});

test.describe("Admin Organization Settings Page - user flow smoke tests",{
test.describe("Admin Organization Settings Page - user flow smoke tests", {
tag: "@smoke",
}, () => {
test.describe("admin user", () => {
Expand All @@ -51,8 +51,8 @@ test.describe("Admin Organization Settings Page - user flow smoke tests",{
});

test.describe("table", () => {
test.beforeEach(async ({ organizationPage }) => {
await organizationPage.page.locator(".usa-table tbody").waitFor({ state: "visible" });
test.beforeEach(async ({organizationPage}) => {
await organizationPage.page.locator(".usa-table tbody").waitFor({state: "visible"});
});

test("has correct headers", async ({organizationPage}) => {
Expand Down

0 comments on commit 62943c3

Please sign in to comment.