- Rename directory keep-notes -> memento-note with all code references - Prisma: SQLite -> PostgreSQL (both app and MCP server schemas) - Sync MCP schema with main app (add missing fields, relations, indexes) - Delete 17 SQLite migrations (clean slate for PostgreSQL) - Remove SQLite dependencies (@libsql/client, better-sqlite3, etc.) - Fix MCP server: hardcoded Windows DB paths -> DATABASE_URL env var - Fix MCP server: .dockerignore excluded index-sse.js (SSE mode broken) - MCP Dockerfile: node:20 -> node:22 - Docker Compose: add postgres service, remove SQLite volume - Generate favicon.ico, icon-192.png, icon-512.png, apple-icon.png - Update layout.tsx icons and manifest.json for PNG icons - Update all .env files for PostgreSQL - Rewrite README.md with updated sections - Remove mcp-server/node_modules and prisma/client-generated from git tracking Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
69 lines
2.8 KiB
TypeScript
69 lines
2.8 KiB
TypeScript
import { test, expect } from '@playwright/test'
|
|
|
|
test.describe('Bug: Note move to notebook', () => {
|
|
test('should update UI immediately when moving note to notebook', async ({ page }) => {
|
|
// Step 1: Login
|
|
await page.goto('http://localhost:3000/login')
|
|
await page.fill('input[name="email"]', 'test@example.com')
|
|
await page.fill('input[name="password"]', 'password123')
|
|
await page.click('button[type="submit"]')
|
|
await page.waitForURL('http://localhost:3000/')
|
|
|
|
// Step 2: Create a test note in "Notes générales"
|
|
const testNoteContent = `Test note for move bug ${Date.now()}`
|
|
await page.fill('textarea[placeholder*="note"]', testNoteContent)
|
|
await page.click('button[type="submit"]')
|
|
|
|
// Wait for note creation
|
|
await page.waitForTimeout(2000)
|
|
|
|
// Step 3: Find the created note
|
|
const notes = await page.locator('.note-card').all()
|
|
expect(notes.length).toBeGreaterThan(0)
|
|
|
|
const firstNote = notes[0]
|
|
const noteId = await firstNote.getAttribute('data-note-id')
|
|
console.log('Created note with ID:', noteId)
|
|
|
|
// Step 4: Create a test notebook
|
|
await page.click('button:has-text("Créer un notebook")')
|
|
await page.fill('input[name="name"]', `Test Notebook ${Date.now()}`)
|
|
await page.click('button:has-text("Créer")')
|
|
await page.waitForTimeout(2000)
|
|
|
|
// Step 5: Move the note to the notebook
|
|
// Open notebook menu on the note
|
|
await firstNote.click('button[aria-label*="notebook"]')
|
|
await page.waitForTimeout(500)
|
|
|
|
// Select the first notebook in the list
|
|
const notebookOption = page.locator('[role="menuitem"]').first()
|
|
const notebookName = await notebookOption.textContent()
|
|
await notebookOption.click()
|
|
|
|
// Wait for the move operation
|
|
await page.waitForTimeout(2000)
|
|
|
|
// Step 6: Verify the note is NO LONGER visible in "Notes générales"
|
|
const notesAfterMove = await page.locator('.note-card').all()
|
|
console.log('Notes in "Notes générales" after move:', notesAfterMove.length)
|
|
|
|
// The note should be gone from "Notes générales"
|
|
const movedNote = await page.locator(`.note-card[data-note-id="${noteId}"]`).count()
|
|
console.log('Moved note still visible in "Notes générales":', movedNote)
|
|
expect(movedNote).toBe(0) // This should pass!
|
|
|
|
// Step 7: Navigate to the notebook
|
|
await page.click(`text="${notebookName}"`)
|
|
await page.waitForTimeout(2000)
|
|
|
|
// Step 8: Verify the note IS visible in the notebook
|
|
const notesInNotebook = await page.locator('.note-card').all()
|
|
console.log('Notes in notebook:', notesInNotebook.length)
|
|
|
|
const movedNoteInNotebook = await page.locator(`.note-card[data-note-id="${noteId}"]`).count()
|
|
console.log('Moved note visible in notebook:', movedNoteInNotebook)
|
|
expect(movedNoteInNotebook).toBe(1) // This should pass!
|
|
})
|
|
})
|