12 lines
321 B
TypeScript
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');
|
|
});
|
|
});
|