feat(settings): add settings route and API updates\n\nCo-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

This commit is contained in:
2026-05-16 20:19:35 +02:00
parent 9b63d981b0
commit 0ee89cf052
38 changed files with 1426 additions and 562 deletions
@@ -56,8 +56,8 @@ describe("StockDetail UI - executionPlan", () => {
await waitFor(() => expect(screen.getByText(/Execution Plan/i)).toBeInTheDocument());
expect(screen.getByText(/Amount:/i)).toBeInTheDocument();
expect(screen.getByText(/25 shares/i)).toBeInTheDocument();
expect(screen.getByText(/Take profit:/i)).toBeInTheDocument();
expect(screen.getByText(/\$150/)).toBeInTheDocument();
expect(screen.getAllByText(/25 shares/i).length).toBeGreaterThan(0);
expect(screen.getAllByText(/Take profit:/i).length).toBeGreaterThan(0);
expect(screen.getAllByText(/\$150/).length).toBeGreaterThan(0);
});
});