11 lines
379 B
TypeScript
11 lines
379 B
TypeScript
|
|
import { test, expect } from '@playwright/test';
|
|
|
|
test.describe('Jobs', () => {
|
|
test('should list jobs on home page', async ({ page }) => {
|
|
await page.goto('/');
|
|
// Check if jobs grid is visible
|
|
// This depends on the home page implementation
|
|
await expect(page.locator('h1')).toContainText('Connect to your professional future');
|
|
});
|
|
});
|