feature: add border generator module.

This commit is contained in:
Adrian Ortiz 2024-09-07 11:36:53 -06:00
parent 87984e2081
commit 52df553294
6 changed files with 287 additions and 3 deletions

View file

@ -0,0 +1,15 @@
import { test, expect } from '@playwright/test';
test.describe('Tool - Border generator', () => {
test.beforeEach(async ({ page }) => {
await page.goto('/border-generator');
});
test('Has correct title', async ({ page }) => {
await expect(page).toHaveTitle('Border generator - IT Tools');
});
test('', async ({ page }) => {
});
});