Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { expect, Page, test } from "@playwright/test"

import expectUrlPathWithRandomUuid from "../utils/expect"
import expectScreenshotsToMatchSnapshots from "../utils/screenshot"
import expectUrlPathWithRandomUuid from "@/utils/expect"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"

test.use({
storageState: "src/states/admin@example.com.json",
Expand Down Expand Up @@ -44,7 +44,7 @@
await page.click('button:text("Create")')
await page.getByText("New exercise service").waitFor()

await expectScreenshotsToMatchSnapshots({

Check failure on line 47 in system-tests/src/tests/admin/exercise-service.spec.ts

View workflow job for this annotation

GitHub Actions / system-tests (1)

[chromium] › src/tests/admin/exercise-service.spec.ts:19:5 › can add and delete exercise service

1) [chromium] › src/tests/admin/exercise-service.spec.ts:19:5 › can add and delete exercise service › Expect screenshots to match snapshots "exercise-service-page" Error: spawnSync oxipng ENOENT 45 | await page.getByText("New exercise service").waitFor() 46 | > 47 | await expectScreenshotsToMatchSnapshots({ | ^ 48 | screenshotTarget: page, 49 | headless, 50 | testInfo, at /home/runner/work/secret-project-331/secret-project-331/system-tests/src/tests/admin/exercise-service.spec.ts:47:42
screenshotTarget: page,
headless,
testInfo,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { test } from "@playwright/test"

import { scrollLocatorsParentIframeToViewIfNeeded } from "../utils/iframeLocators"
import { scrollLocatorsParentIframeToViewIfNeeded } from "@/utils/iframeLocators"

test("Playground views works", async ({ page }) => {
await page.goto("http://project-331.local/playground-views")
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { expect, test } from "@playwright/test"

import { selectCourseInstanceIfPrompted } from "../../utils/courseMaterialActions"
import { selectCourseInstanceIfPrompted } from "@/utils/courseMaterialActions"

test.use({
storageState: "src/states/langs@example.com.json",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
test,
} from "@playwright/test"

import { logout } from "../../utils/logout"
import { logout } from "@/utils/logout"

test.describe("Login session with Playwright", () => {
/// Login state to use
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { expect, test } from "@playwright/test"

import { selectCourseInstanceIfPrompted } from "../utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "../utils/screenshot"
import { selectCourseInstanceIfPrompted } from "@/utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"

test("Research consent form is visible on login, if not yet answered", async ({
page,
Expand All @@ -25,7 +25,7 @@
)
.check()

await expectScreenshotsToMatchSnapshots({

Check failure on line 28 in system-tests/src/tests/authentication/research-consent.spec.ts

View workflow job for this annotation

GitHub Actions / system-tests (1)

[chromium] › src/tests/authentication/research-consent.spec.ts:6:5 › Research consent form is visible on login

2) [chromium] › src/tests/authentication/research-consent.spec.ts:6:5 › Research consent form is visible on login, if not yet answered › Research consent form is visible on login, if not yet answered › Expect screenshots to match snapshots "research-consent-form" Error: spawnSync oxipng ENOENT 26 | .check() 27 | > 28 | await expectScreenshotsToMatchSnapshots({ | ^ 29 | screenshotTarget: page, 30 | headless, 31 | testInfo, at /home/runner/work/secret-project-331/secret-project-331/system-tests/src/tests/authentication/research-consent.spec.ts:28:44 at /home/runner/work/secret-project-331/secret-project-331/system-tests/src/tests/authentication/research-consent.spec.ts:10:3
screenshotTarget: page,
headless,
testInfo,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { test } from "@playwright/test"

import expectScreenshotsToMatchSnapshots from "../../utils/screenshot"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"

test.use({
storageState: "src/states/teacher@example.com.json",
Expand All @@ -20,7 +20,7 @@
.getByRole("link", { name: "Manage certificates" })
.click()

await expectScreenshotsToMatchSnapshots({

Check failure on line 23 in system-tests/src/tests/course-features/certificates/configure-certificate.spec.ts

View workflow job for this annotation

GitHub Actions / system-tests (1)

[chromium] › src/tests/course-features/certificates/configure-certificate.spec.ts:9:5 › Configuring certificates works

3) [chromium] › src/tests/course-features/certificates/configure-certificate.spec.ts:9:5 › Configuring certificates works › Expect screenshots to match snapshots "management-page" Error: spawnSync oxipng ENOENT 21 | .click() 22 | > 23 | await expectScreenshotsToMatchSnapshots({ | ^ 24 | screenshotTarget: page, 25 | headless, 26 | testInfo, at /home/runner/work/secret-project-331/secret-project-331/system-tests/src/tests/course-features/certificates/configure-certificate.spec.ts:23:42
screenshotTarget: page,
headless,
testInfo,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { expect, test } from "@playwright/test"

import { selectCourseInstanceIfPrompted } from "../../utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "../../utils/screenshot"
import { selectCourseInstanceIfPrompted } from "@/utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"

test.use({
storageState: "src/states/user@example.com.json",
Expand Down Expand Up @@ -35,7 +35,7 @@
await page.getByText("Save as png").waitFor()
const currentUrl = page.url()
await page.goto(`${currentUrl}?debug=true`)
await expectScreenshotsToMatchSnapshots({

Check failure on line 38 in system-tests/src/tests/course-features/certificates/generate-certificate.spec.ts

View workflow job for this annotation

GitHub Actions / system-tests (1)

[chromium] › src/tests/course-features/certificates/generate-certificate.spec.ts:10:5 › Generating certificates works

4) [chromium] › src/tests/course-features/certificates/generate-certificate.spec.ts:10:5 › Generating certificates works › Expect screenshots to match snapshots "generated-certificate" Error: spawnSync oxipng ENOENT 36 | const currentUrl = page.url() 37 | await page.goto(`${currentUrl}?debug=true`) > 38 | await expectScreenshotsToMatchSnapshots({ | ^ 39 | screenshotTarget: page, 40 | headless, 41 | testInfo, at /home/runner/work/secret-project-331/secret-project-331/system-tests/src/tests/course-features/certificates/generate-certificate.spec.ts:38:42
screenshotTarget: page,
headless,
testInfo,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { BrowserContext, expect, test } from "@playwright/test"

import { answerExercise } from "./peer-reviews/peer_review_utils"
import { answerExercise } from "@/tests/exercises/peer-reviews/peer-review-utils"

test.use({
storageState: "src/states/teacher@example.com.json",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
import { expect, test } from "@playwright/test"

import { selectCourseInstanceIfPrompted } from "../../utils/courseMaterialActions"
import expectUrlPathWithRandomUuid from "../../utils/expect"
import { getLocatorForNthExerciseServiceIframe } from "../../utils/iframeLocators"
import { login } from "../../utils/login"
import { logout } from "../../utils/logout"
import expectScreenshotsToMatchSnapshots from "../../utils/screenshot"

import { feedbackTooltipClass } from "@/shared-module/common/styles/constants"
import { selectCourseInstanceIfPrompted } from "@/utils/courseMaterialActions"
import expectUrlPathWithRandomUuid from "@/utils/expect"
import { getLocatorForNthExerciseServiceIframe } from "@/utils/iframeLocators"
import { login } from "@/utils/login"
import { logout } from "@/utils/logout"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"

test.use({
storageState: "src/states/user@example.com.json",
Expand Down Expand Up @@ -45,7 +44,7 @@
clickCount: 3,
})

await expectScreenshotsToMatchSnapshots({

Check failure on line 47 in system-tests/src/tests/course-features/feedback/give-and-manage.spec.ts

View workflow job for this annotation

GitHub Actions / system-tests (1)

[chromium] › src/tests/course-features/feedback/give-and-manage.spec.ts:15:5 › feedback test

5) [chromium] › src/tests/course-features/feedback/give-and-manage.spec.ts:15:5 › feedback test › Expect screenshots to match snapshots "feedback-tooltip" Error: spawnSync oxipng ENOENT 45 | }) 46 | > 47 | await expectScreenshotsToMatchSnapshots({ | ^ 48 | screenshotTarget: page, 49 | headless, 50 | testInfo, at /home/runner/work/secret-project-331/secret-project-331/system-tests/src/tests/course-features/feedback/give-and-manage.spec.ts:47:42
screenshotTarget: page,
headless,
testInfo,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { expect, test } from "@playwright/test"

import { selectCourseInstanceIfPrompted } from "../../utils/courseMaterialActions"
import { getLocatorForNthExerciseServiceIframe } from "../../utils/iframeLocators"
import expectScreenshotsToMatchSnapshots from "../../utils/screenshot"
import { selectCourseInstanceIfPrompted } from "@/utils/courseMaterialActions"
import { getLocatorForNthExerciseServiceIframe } from "@/utils/iframeLocators"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"

test.use({
storageState: "src/states/admin@example.com.json",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { test } from "@playwright/test"

import { selectCourseInstanceIfPrompted } from "../utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "../utils/screenshot"
import { waitForFooterTranslationsToLoad } from "../utils/waitingUtils"
import { selectCourseInstanceIfPrompted } from "@/utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"
import { waitForFooterTranslationsToLoad } from "@/utils/waitingUtils"

test.use({
storageState: "src/states/admin@example.com.json",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { test } from "@playwright/test"

import { selectCourseInstanceIfPrompted } from "../utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "../utils/screenshot"
import { selectCourseInstanceIfPrompted } from "@/utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"

test.use({
storageState: "src/states/teacher@example.com.json",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { test } from "@playwright/test"

import { selectCourseInstanceIfPrompted } from "../utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "../utils/screenshot"
import { selectCourseInstanceIfPrompted } from "@/utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"

test.use({
storageState: "src/states/admin@example.com.json",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { expect, test } from "@playwright/test"

import { selectCourseInstanceIfPrompted } from "../utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "../utils/screenshot"
import { selectCourseInstanceIfPrompted } from "@/utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"

test.use({
storageState: "src/states/admin@example.com.json",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { test } from "@playwright/test"

import { selectCourseInstanceIfPrompted } from "../utils/courseMaterialActions"
import expectUrlPathWithRandomUuid from "../utils/expect"
import expectScreenshotsToMatchSnapshots from "../utils/screenshot"
import { selectCourseInstanceIfPrompted } from "@/utils/courseMaterialActions"
import expectUrlPathWithRandomUuid from "@/utils/expect"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"

test.use({
storageState: "src/states/teacher@example.com.json",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { test } from "@playwright/test"

import { selectCourseInstanceIfPrompted } from "../utils/courseMaterialActions"
import expectUrlPathWithRandomUuid from "../utils/expect"
import { selectCourseInstanceIfPrompted } from "@/utils/courseMaterialActions"
import expectUrlPathWithRandomUuid from "@/utils/expect"
import {
getLocatorForNthExerciseServiceIframe,
scrollLocatorsParentIframeToViewIfNeeded,
} from "../utils/iframeLocators"
} from "@/utils/iframeLocators"

test.use({
storageState: "src/states/teacher@example.com.json",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { expect, test } from "@playwright/test"

import { downloadToString } from "../../utils/download"
import { showNextToastsInfinitely, showToastsNormally } from "../../utils/notificationUtils"
import expectScreenshotsToMatchSnapshots from "../../utils/screenshot"
import { downloadToString } from "@/utils/download"
import { showNextToastsInfinitely, showToastsNormally } from "@/utils/notificationUtils"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"

test.use({
storageState: "src/states/teacher@example.com.json",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { expect, test } from "@playwright/test"

import { downloadToString } from "../../utils/download"
import { showNextToastsInfinitely, showToastsNormally } from "../../utils/notificationUtils"
import { downloadToString } from "@/utils/download"
import { showNextToastsInfinitely, showToastsNormally } from "@/utils/notificationUtils"

test.use({
storageState: "src/states/admin@example.com.json",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { expect, test } from "@playwright/test"

import { selectCourseInstanceIfPrompted } from "../utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "../utils/screenshot"
import { selectCourseInstanceIfPrompted } from "@/utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"

test.use({
storageState: "src/states/user@example.com.json",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { expect, test } from "@playwright/test"

import { selectCourseInstanceIfPrompted } from "../utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "../utils/screenshot"
import { selectCourseInstanceIfPrompted } from "@/utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"

test.use({
storageState: "src/states/language.teacher@example.com.json",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { expect, test } from "@playwright/test"

import expectScreenshotsToMatchSnapshots from "../../utils/screenshot"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"

test.use({
storageState: "src/states/admin@example.com.json",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
import { expect, test } from "@playwright/test"

import {
hideToasts,
showNextToastsInfinitely,
showToastsNormally,
} from "../utils/notificationUtils"
import expectScreenshotsToMatchSnapshots from "../utils/screenshot"
import { hideToasts, showNextToastsInfinitely, showToastsNormally } from "@/utils/notificationUtils"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"

test.use({
storageState: "src/states/admin@example.com.json",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { BrowserContext, test } from "@playwright/test"

import { selectCourseInstanceIfPrompted } from "../utils/courseMaterialActions"
import { selectCourseInstanceIfPrompted } from "@/utils/courseMaterialActions"

test.use({
storageState: "src/states/teacher@example.com.json",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { expect, test } from "@playwright/test"

import { selectCourseInstanceIfPrompted } from "../utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "../utils/screenshot"
import { selectCourseInstanceIfPrompted } from "@/utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"

test.describe("anonymous user", () => {
test("cannot see draft course", async ({ page }) => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { test } from "@playwright/test"

import { selectCourseInstanceIfPrompted } from "../utils/courseMaterialActions"
import { selectCourseInstanceIfPrompted } from "@/utils/courseMaterialActions"

test.use({
storageState: "src/states/teacher@example.com.json",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { test } from "@playwright/test"

import { selectCourseInstanceIfPrompted } from "../utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "../utils/screenshot"
import { selectCourseInstanceIfPrompted } from "@/utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"

test.use({
storageState: "src/states/teacher@example.com.json",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { test } from "@playwright/test"

import { selectCourseInstanceIfPrompted } from "../../utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "../../utils/screenshot"
import { selectCourseInstanceIfPrompted } from "@/utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"

test.use({
storageState: "src/states/teacher@example.com.json",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/* eslint-disable playwright/no-wait-for-timeout */
import { test } from "@playwright/test"

import { selectCourseInstanceIfPrompted } from "../utils/courseMaterialActions"
import expectUrlPathWithRandomUuid from "../utils/expect"
import expectScreenshotsToMatchSnapshots from "../utils/screenshot"
import { selectCourseInstanceIfPrompted } from "@/utils/courseMaterialActions"
import expectUrlPathWithRandomUuid from "@/utils/expect"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"

test.use({
storageState: "src/states/admin@example.com.json",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { test } from "@playwright/test"

import { selectCourseInstanceIfPrompted } from "../../utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "../../utils/screenshot"
import { selectCourseInstanceIfPrompted } from "@/utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"

test.use({
storageState: "src/states/user@example.com.json",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { expect, test } from "@playwright/test"

import { selectCourseInstanceIfPrompted } from "../utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "../utils/screenshot"
import { selectCourseInstanceIfPrompted } from "@/utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"

test.use({
storageState: "src/states/user@example.com.json",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { expect, test } from "@playwright/test"

import { selectCourseInstanceIfPrompted } from "../../utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "../../utils/screenshot"
import { selectCourseInstanceIfPrompted } from "@/utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"
test.use({
storageState: "src/states/admin@example.com.json",
})
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { test } from "@playwright/test"

import { selectCourseInstanceIfPrompted } from "../utils/courseMaterialActions"
import { selectCourseInstanceIfPrompted } from "@/utils/courseMaterialActions"

test.use({
storageState: "src/states/teacher@example.com.json",
Expand Down
2 changes: 1 addition & 1 deletion system-tests/src/tests/exams/exam-instructions.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { test } from "@playwright/test"

import expectScreenshotsToMatchSnapshots from "../../utils/screenshot"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"
test.use({
storageState: "src/states/admin@example.com.json",
})
Expand Down
2 changes: 1 addition & 1 deletion system-tests/src/tests/exams/exam-list.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { test } from "@playwright/test"

import expectUrlPathWithRandomUuid from "../../utils/expect"
import expectUrlPathWithRandomUuid from "@/utils/expect"

test.use({
storageState: "src/states/admin@example.com.json",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { expect, test } from "@playwright/test"

import { selectCourseInstanceIfPrompted } from "../../utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "../../utils/screenshot"
import { selectCourseInstanceIfPrompted } from "@/utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"

test.use({
storageState: "src/states/user@example.com.json",
Expand Down
2 changes: 1 addition & 1 deletion system-tests/src/tests/exams/taking-exam.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { test } from "@playwright/test"

import expectScreenshotsToMatchSnapshots from "../../utils/screenshot"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"
test.use({
storageState: "src/states/user@example.com.json",
})
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { expect, test } from "@playwright/test"

import { selectCourseInstanceIfPrompted } from "../utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "../utils/screenshot"
import { selectCourseInstanceIfPrompted } from "@/utils/courseMaterialActions"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"

test.use({
storageState: "src/states/teacher@example.com.json",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { expect, test } from "@playwright/test"

import { selectCourseInstanceIfPrompted } from "../../utils/courseMaterialActions"
import { getLocatorForNthExerciseServiceIframe } from "../../utils/iframeLocators"
import expectScreenshotsToMatchSnapshots from "../../utils/screenshot"
import { selectCourseInstanceIfPrompted } from "@/utils/courseMaterialActions"
import { getLocatorForNthExerciseServiceIframe } from "@/utils/iframeLocators"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"

test.use({
storageState: "src/states/teacher@example.com.json",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { test } from "@playwright/test"

import expectScreenshotsToMatchSnapshots from "../utils/screenshot"
import expectScreenshotsToMatchSnapshots from "@/utils/screenshot"

test.use({
storageState: "src/states/admin@example.com.json",
Expand Down
Loading
Loading