chore: hoists tests out of payload package

This commit is contained in:
James
2023-09-01 14:45:41 -04:00
parent 893ca87225
commit 0f3b364e46
215 changed files with 254 additions and 257 deletions

10
test/credentials.ts Normal file
View File

@@ -0,0 +1,10 @@
export const devUser = {
email: 'dev@payloadcms.com',
password: 'test',
roles: ['admin'],
}
export const regularUser = {
email: 'user@payloadcms.com',
password: 'test2',
roles: ['user'],
}