chore(prettier): update prettier config

This commit is contained in:
Shintaro Jokagi 2025-05-28 13:50:37 +12:00
parent ceef83d609
commit a77c141d35
No known key found for this signature in database
GPG key ID: 0DDF8FA44C9A0DA8
66 changed files with 709 additions and 709 deletions

View file

@ -1,7 +1,7 @@
import { expect, test } from "@playwright/test"
import { expect, test } from '@playwright/test'
test("all routes do not return 404", async ({ page }) => {
const routes = ["/", "/welcome", "/about", "/privacy-policy", "/download", "/donate", "/whatsnew"]
test('all routes do not return 404', async ({ page }) => {
const routes = ['/', '/welcome', '/about', '/privacy-policy', '/download', '/donate', '/whatsnew']
for (const route of routes) {
const response = await page.goto(route)
expect(response?.status()).not.toBe(404)