Migrate test suite from Cypress and Jest to Playwright and Vitest
This commit is contained in:
@@ -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',
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user