spb/vquant Public MIT
VibeQuant — AI-powered institutional-grade financial intelligence platform.
TypeScript 84.3%
Python 11.7%
JavaScript 1.6%
CSS 1.5%
HTML 0.7%
1/*2 * =============================================================================3 * VibeQuant (vquant) — AI-Powered Financial Intelligence Platform4 * -----------------------------------------------------------------------------5 * File: client/src/App.test.tsx6 *7 * Author: Simon-Pierre Boucher8 * Contact: contact@spboucher.ai9 * Website: https://www.spboucher.ai10 * Demo: https://www.vquant.ai11 * License: MIT (see LICENSE)12 *13 * Copyright © 2026 Simon-Pierre Boucher. All rights reserved.14 * =============================================================================15 */1617import { describe, it, expect } from "vitest";18import { render, screen } from "@testing-library/react";19import App from "./App";2021describe("App", () => {22 it("renders without crashing", () => {23 const { container } = render(<App />);24 expect(container).toBeTruthy();25 });2627 it("renders the home page by default", () => {28 render(<App />);29 // The home page has a data-testid="page-home"30 expect(screen.getByTestId("page-home")).toBeInTheDocument();31 });3233 it("renders the search bar", () => {34 render(<App />);35 expect(36 screen.getByPlaceholderText(/question.*march/i),37 ).toBeInTheDocument();38 });39});40