Some checks failed
CI/CD Pipeline / unit-tests (push) Failing after 1m16s
CI/CD Pipeline / integration-tests (push) Failing after 2m32s
CI/CD Pipeline / lint (push) Successful in 5m22s
CI/CD Pipeline / e2e-tests (push) Has been skipped
CI/CD Pipeline / build (push) Has been skipped
29 lines
912 B
TypeScript
29 lines
912 B
TypeScript
import { test, expect } from '@playwright/test'
|
|
|
|
test.describe('Templates E2E - Comprehensive', () => {
|
|
test.beforeEach(async ({ page }) => {
|
|
await page.goto('http://localhost:5173/templates')
|
|
await page.waitForLoadState('networkidle')
|
|
})
|
|
|
|
test('displays template catalog', async ({ page }) => {
|
|
await expect(page.locator('text=/templates/i')).toBeVisible()
|
|
|
|
// Check for template cards
|
|
const cards = page.locator('.MuiCard-root')
|
|
await expect(cards.first()).toBeVisible()
|
|
})
|
|
|
|
test('shows pricing information', async ({ page }) => {
|
|
await expect(page.locator('text=/€|EUR|cost|price/i')).toBeVisible()
|
|
})
|
|
|
|
test('displays template details', async ({ page }) => {
|
|
// Wait for templates to load
|
|
await page.waitForTimeout(1000)
|
|
|
|
const text = await page.textContent('body')
|
|
expect(text?.toLowerCase()).toMatch(/worker|database|memory|cpu/i)
|
|
})
|
|
})
|