Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

Commit

Permalink
add style
Browse files Browse the repository at this point in the history
  • Loading branch information
raspberri05 committed Oct 19, 2024
1 parent 261ca5c commit a8b51ef
Show file tree
Hide file tree
Showing 4 changed files with 110 additions and 108 deletions.
4 changes: 3 additions & 1 deletion application/app/components/organisms/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ export default function Footer() {
</aside>
<nav>
<h6 className="footer-title">Learn More</h6>
<a className="link link-hover" href="/">About</a>
<a className="link link-hover" href="/">
About
</a>
</nav>
<nav>
<h6 className="footer-title">Community</h6>
Expand Down
86 changes: 43 additions & 43 deletions application/package.json
Original file line number Diff line number Diff line change
@@ -1,45 +1,45 @@
{
"name": "persona.fm",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"style": "prettier --write ."
},
"dependencies": {
"@next/third-parties": "^14.2.15",
"@supabase/ssr": "^0.5.1",
"@supabase/supabase-js": "^2.45.4",
"axios": "^1.7.7",
"clsx": "^2.1.1",
"cookies-next": "^4.3.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.33.0",
"framer-motion": "^11.11.8",
"next": "^14.2.15",
"openai": "^4.67.3",
"postgres": "^3.4.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@playwright/test": "^1.48.1",
"@types/node": "^22",
"@types/react": "^18",
"@types/react-dom": "^18",
"daisyui": "^4.12.10",
"drizzle-kit": "^0.24.2",
"eslint": "^8",
"eslint-config-next": "^14.2.15",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.13",
"typescript": "^5"
},
"volta": {
"node": "20.18.0"
}
"name": "persona.fm",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"style": "prettier --write ."
},
"dependencies": {
"@next/third-parties": "^14.2.15",
"@supabase/ssr": "^0.5.1",
"@supabase/supabase-js": "^2.45.4",
"axios": "^1.7.7",
"clsx": "^2.1.1",
"cookies-next": "^4.3.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.33.0",
"framer-motion": "^11.11.8",
"next": "^14.2.15",
"openai": "^4.67.3",
"postgres": "^3.4.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@playwright/test": "^1.48.1",
"@types/node": "^22",
"@types/react": "^18",
"@types/react-dom": "^18",
"daisyui": "^4.12.10",
"drizzle-kit": "^0.24.2",
"eslint": "^8",
"eslint-config-next": "^14.2.15",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.13",
"typescript": "^5"
},
"volta": {
"node": "20.18.0"
}
}
116 changes: 58 additions & 58 deletions application/playwright.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { defineConfig, devices } from '@playwright/test';
import { defineConfig, devices } from "@playwright/test";

/**
* Read environment variables from file.
Expand All @@ -12,68 +12,68 @@ import { defineConfig, devices } from '@playwright/test';
* See https://playwright.dev/docs/test-configuration.
*/
export default defineConfig({
testDir: './tests',
/* Run tests in files in parallel */
fullyParallel: true,
/* Fail the build on CI if you accidentally left test.only in the source code. */
forbidOnly: !!process.env.CI,
/* Retry on CI only */
retries: process.env.CI ? 2 : 0,
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 1 : undefined,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: 'html',
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use: {
/* Base URL to use in actions like `await page.goto('/')`. */
baseURL: 'http://127.0.0.1:3000',
testDir: "./tests",
/* Run tests in files in parallel */
fullyParallel: true,
/* Fail the build on CI if you accidentally left test.only in the source code. */
forbidOnly: !!process.env.CI,
/* Retry on CI only */
retries: process.env.CI ? 2 : 0,
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 1 : undefined,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: "html",
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use: {
/* Base URL to use in actions like `await page.goto('/')`. */
baseURL: "http://127.0.0.1:3000",

/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
trace: 'on-first-retry',
},

/* Configure projects for major browsers */
projects: [
{
name: 'chromium',
use: { ...devices['Desktop Chrome'] },
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
trace: "on-first-retry",
},

{
name: 'firefox',
use: { ...devices['Desktop Firefox'] },
},
/* Configure projects for major browsers */
projects: [
{
name: "chromium",
use: { ...devices["Desktop Chrome"] },
},

{
name: 'webkit',
use: { ...devices['Desktop Safari'] },
},
{
name: "firefox",
use: { ...devices["Desktop Firefox"] },
},

/* Test against mobile viewports. */
// {
// name: 'Mobile Chrome',
// use: { ...devices['Pixel 5'] },
// },
// {
// name: 'Mobile Safari',
// use: { ...devices['iPhone 12'] },
// },
{
name: "webkit",
use: { ...devices["Desktop Safari"] },
},

/* Test against branded browsers. */
// {
// name: 'Microsoft Edge',
// use: { ...devices['Desktop Edge'], channel: 'msedge' },
// },
// {
// name: 'Google Chrome',
// use: { ...devices['Desktop Chrome'], channel: 'chrome' },
// },
],
/* Test against mobile viewports. */
// {
// name: 'Mobile Chrome',
// use: { ...devices['Pixel 5'] },
// },
// {
// name: 'Mobile Safari',
// use: { ...devices['iPhone 12'] },
// },

/* Run your local dev server before starting the tests */
webServer: {
command: 'npm run build && npm run start',
url: 'http://127.0.0.1:3000',
reuseExistingServer: !process.env.CI,
},
/* Test against branded browsers. */
// {
// name: 'Microsoft Edge',
// use: { ...devices['Desktop Edge'], channel: 'msedge' },
// },
// {
// name: 'Google Chrome',
// use: { ...devices['Desktop Chrome'], channel: 'chrome' },
// },
],

/* Run your local dev server before starting the tests */
webServer: {
command: "npm run build && npm run start",
url: "http://127.0.0.1:3000",
reuseExistingServer: !process.env.CI,
},
});
12 changes: 6 additions & 6 deletions application/tests/index.spec.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { test, expect } from '@playwright/test';
import { test, expect } from "@playwright/test";

test('has title', async ({ page }) => {
await page.goto('/');
test("has title", async ({ page }) => {
await page.goto("/");

// Expect a title "to contain" a substring.
await expect(page).toHaveTitle(/Persona FM/);
});
// Expect a title "to contain" a substring.
await expect(page).toHaveTitle(/Persona FM/);
});

0 comments on commit a8b51ef

Please sign in to comment.