32 lines
533 B
TypeScript
32 lines
533 B
TypeScript
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',
|
|
},
|
|
};
|