mirror of
https://github.com/shawnkim1997/All-in-one-Financial-Analysis.git
synced 2026-08-19 05:18:08 +00:00
14 lines
411 B
TypeScript
14 lines
411 B
TypeScript
import { expect, test } from "@playwright/test";
|
|
|
|
import { expectAtlasShell, mockAtlasApi, seedTicker } from "./atlas-smoke";
|
|
|
|
test("macro dashboard route loads", async ({ page }) => {
|
|
await mockAtlasApi(page);
|
|
await seedTicker(page, "NVDA");
|
|
|
|
await page.goto("/macro");
|
|
|
|
await expectAtlasShell(page);
|
|
await expect(page.getByRole("heading", { name: "Global Macro & Smart Money" })).toBeVisible();
|
|
});
|