mirror of
https://github.com/lukevella/rallly.git
synced 2025-08-04 08:58:40 +02:00
♻️ Update eslint config (#1424)
This commit is contained in:
parent
01396b6129
commit
d55131c2ab
162 changed files with 337 additions and 266 deletions
|
@ -1,5 +1,7 @@
|
|||
import { expect, Page, test } from "@playwright/test";
|
||||
import smtpTester, { MailServer } from "smtp-tester";
|
||||
import type { Page} from "@playwright/test";
|
||||
import { expect, test } from "@playwright/test";
|
||||
import type { MailServer } from "smtp-tester";
|
||||
import smtpTester from "smtp-tester";
|
||||
import { NewPollPage } from "tests/new-poll-page";
|
||||
|
||||
test.describe.serial(() => {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { Page } from "@playwright/test";
|
||||
import type { Page } from "@playwright/test";
|
||||
|
||||
export class EditOptionsPage {
|
||||
constructor(public readonly page: Page) {}
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
import { expect, Page, test } from "@playwright/test";
|
||||
import smtpTester, { MailServer } from "smtp-tester";
|
||||
import { EditOptionsPage } from "tests/edit-options-page";
|
||||
import type { Page} from "@playwright/test";
|
||||
import { expect, test } from "@playwright/test";
|
||||
import type { MailServer } from "smtp-tester";
|
||||
import smtpTester from "smtp-tester";
|
||||
import type { EditOptionsPage } from "tests/edit-options-page";
|
||||
import { NewPollPage } from "tests/new-poll-page";
|
||||
|
||||
test.describe("edit options", () => {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { Page } from "@playwright/test";
|
||||
import type { Page } from "@playwright/test";
|
||||
|
||||
export class InvitePage {
|
||||
constructor(public readonly page: Page) {}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { Page } from "@playwright/test";
|
||||
import type { Page } from "@playwright/test";
|
||||
import { PollPage } from "tests/poll-page";
|
||||
|
||||
export class NewPollPage {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { Page } from "@playwright/test";
|
||||
import type { Page } from "@playwright/test";
|
||||
import { EditOptionsPage } from "tests/edit-options-page";
|
||||
import { InvitePage } from "tests/invite-page";
|
||||
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
import { expect, Page, Request, test } from "@playwright/test";
|
||||
import type { Page, Request } from "@playwright/test";
|
||||
import { expect, test } from "@playwright/test";
|
||||
import { load } from "cheerio";
|
||||
import smtpTester, { MailServer } from "smtp-tester";
|
||||
import { PollPage } from "tests/poll-page";
|
||||
import type { MailServer } from "smtp-tester";
|
||||
import smtpTester from "smtp-tester";
|
||||
import type { PollPage } from "tests/poll-page";
|
||||
|
||||
import { NewPollPage } from "./new-poll-page";
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue