Merge pull request #223 from marcgabe15/marcdiaz/e2e

E2E Testing with Playwright
This commit is contained in:
Sid
2026-03-16 20:59:04 -07:00
committed by GitHub
10 changed files with 231 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
export type TestId = `gif-size-button-${string}` | "export-button" | `gif-format-button`;
export function getTestId(testId: TestId) {
return `testId-${testId}`;
}