Update README quick-start and adjust tests

Add a Quick Start docker-compose snippet and simplify the Manual Setup instruction in README; also replace three screenshot assets. Update multiple audiobook component tests to match recent UI changes: adjust expected button/notification text (e.g. 'Sign in to Request', 'Request created!'), change selectors for close/interactive controls, add PreferencesContext mock, reflect processing overlay and pending/denied status behavior, and update skeleton loader count (8 -> 10). These edits keep tests aligned with the current UI and improve getting-started docs.
This commit is contained in:
kikootwo
2026-02-05 12:22:26 -05:00
parent 93d33464bf
commit 2c9097f6b0
7 changed files with 49 additions and 25 deletions
@@ -29,7 +29,7 @@ describe('AudiobookGrid', () => {
const { container } = render(<AudiobookGrid audiobooks={[]} isLoading={true} />);
expect(container.querySelectorAll('.animate-pulse')).toHaveLength(8);
expect(container.querySelectorAll('.animate-pulse')).toHaveLength(10);
});
it('shows the empty message when there are no results', async () => {