♻️ Remove deprecated @import from scss files (#7347)

* 🐛 Fix import warnings 1 of 2

* 🐛 Fix import warnings 2 of 2

* 🐛 Fix visual tests and format files

* 🐛 Fix mixed declarations on scss
This commit is contained in:
Eva Marco
2025-09-19 11:50:08 +02:00
committed by GitHub
parent fb7a7d02da
commit b1fe32baea
169 changed files with 287 additions and 243 deletions

View File

@@ -24,21 +24,20 @@ test("Navigate to penpot changelog from profile menu", async ({ page }) => {
]);
await newPage.waitForLoadState();
await expect(newPage).toHaveURL("https://github.com/penpot/penpot/blob/develop/CHANGES.md");
await expect(newPage).toHaveURL(
"https://github.com/penpot/penpot/blob/develop/CHANGES.md",
);
});
test("Opens release notes from current version from profile menu", async ({ page }) => {
test("Opens release notes from current version from profile menu", async ({
page,
}) => {
const dashboardPage = new DashboardPage(page);
await dashboardPage.goToDashboard();
await dashboardPage.openProfileMenu();
await dashboardPage.clickProfileMenuItem("About Penpot");
await expect(
page.getByText("Version 0.0.0 notes"),
).toBeVisible();
await expect(page.getByText("Version 0.0.0 notes")).toBeVisible();
await dashboardPage.clickProfileMenuItem("Version");
await expect(
page.getByText("new in penpot?"),
).toBeVisible();
await expect(page.getByText("new in penpot?")).toBeVisible();
});