it-tools/src/tools/cli-command-editor/cli-command-editor.e2e.spec.ts
2025-06-28 14:51:38 +05:30

12 lines
321 B
TypeScript

import { expect, test } from '@playwright/test';
test.describe('Tool - Cli command editor', () => {
test.beforeEach(async ({ page }) => {
await page.goto('/cli-command-editor');
});
test('Has correct title', async ({ page }) => {
await expect(page).toHaveTitle('Cli command editor - IT Tools');
});
});