This commit is contained in:
sharevb 2024-06-22 20:54:28 +00:00 committed by GitHub
commit fa19b33d6b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 25 additions and 1 deletions

View File

@ -138,5 +138,6 @@
"vitest": "^0.34.0",
"workbox-window": "^7.0.0",
"zx": "^7.2.1"
}
},
"packageManager": "pnpm@8.15.3"
}

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`);
});
});
}

8
src/tsconfig.json Normal file
View File

@ -0,0 +1,8 @@
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./*"]
},
},
}