kevinanielsen/flags-game

View on GitHub
e2e/front-page.spec.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { test, expect } from "@playwright/test";

test("has title", async ({ page }) => {
  await page.goto("/");
  await expect(page).toHaveTitle("Flags Game");
});