Skip to content

Commit

Permalink
fix: added more path on ignorePaths ( cspell ) (#22)
Browse files Browse the repository at this point in the history
* fix: added more path on ignorePaths

* Prettified Code!

---------

Co-authored-by: salvatorecriscioneweb <[email protected]>
  • Loading branch information
1 parent 8b3e392 commit 94bae64
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,8 @@
"ignorePaths": [
"**/*.svg",
".git",
"pnpm-lock.yaml",
"node_modules",
"pnpm-workspace.yaml"
]
}
10 changes: 5 additions & 5 deletions docs/e2e/button.spec.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { test, expect } from '@playwright/test'
import { test, expect } from "@playwright/test";

test('should navigate to the main page', async ({ page }) => {
await page.goto('/')
test("should navigate to the main page", async ({ page }) => {
await page.goto("/");

await expect(page).toHaveScreenshot("main.png", {
maxDiffPixelRatio: 0.01
maxDiffPixelRatio: 0.01,
});
})
});

0 comments on commit 94bae64

Please sign in to comment.