it-tools/src/tools/commit-memo/commit-memo.e2e.spec.ts
Robert Little fcc3d3a3b7 feat(tools): add conventional commits cheatsheet tool
Add commit-memo tool that provides a comprehensive cheatsheet for
conventional commits including structure, examples, and common tools.

- Implements markdown-based content display
- Covers all conventional commit elements (type, scope, description, body, footer)
- Includes examples and common tooling (commitizen, commitlint, husky, etc.)
- Follows established tool architecture pattern
2025-08-07 18:37:55 -04:00

15 lines
378 B
TypeScript

import { test, expect } from '@playwright/test';
test.describe('Tool - Conventional Commit Cheatsheet', () => {
test.beforeEach(async ({ page }) => {
await page.goto('/commit-memo');
});
test('Has correct title', async ({ page }) => {
await expect(page).toHaveTitle('Conventional Commit Cheatsheet - IT Tools');
});
test('', async ({ page }) => {
});
});