feat: test that all tools are loading

This commit is contained in:
sharevb 2024-06-16 13:37:33 +02:00 committed by ShareVB
parent b430baef40
commit 2ef2b39fbc

View file

@ -0,0 +1,15 @@
import { expect, test } from '@playwright/test';
import _ from 'lodash';
import { toolsByCategory } from './index';
for (const tool of _.flatten(toolsByCategory.map(category => category.components))) {
test.describe(`Tool - ${tool.name}`, () => {
test.beforeEach(async ({ page }) => {
await page.goto(tool.path);
});
test('Loads correctly (has correct title)', async ({ page }) => {
await expect(page).toHaveTitle(`${tool.name} - IT Tools`);
});
});
}