Migrate test suite from Cypress and Jest to Playwright and Vitest

This commit is contained in:
Mike Cao
2026-05-09 01:23:20 -07:00
parent 2fd319f910
commit 216cf6c448
37 changed files with 2218 additions and 3991 deletions
+31
View File
@@ -0,0 +1,31 @@
export const users = {
userCreate: {
username: 'playwright1',
password: 'password',
role: 'user',
},
userUpdate: {
username: 'playwright1',
role: 'view-only',
},
};
export const teams = {
teamCreate: {
name: 'playwright',
},
teamUpdate: {
name: 'playwrightUpdate',
},
};
export const websites = {
websiteCreate: {
name: 'Playwright Website',
domain: 'playwright.com',
},
websiteUpdate: {
name: 'Playwright Website Updated',
domain: 'playwrightupdated.com',
},
};