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
15 lines
378 B
TypeScript
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 }) => {
|
|
|
|
});
|
|
}); |