48 lines
931 B
TypeScript
48 lines
931 B
TypeScript
import { getPayload } from 'payload'
|
|
import config from '../../src/payload.config.js'
|
|
|
|
export const testUser = {
|
|
email: 'dev@payloadcms.com',
|
|
password: 'test',
|
|
roles: ['admin'] as ('admin' | 'editor' | 'user')[],
|
|
}
|
|
|
|
/**
|
|
* Seeds a test user for e2e admin tests.
|
|
*/
|
|
export async function seedTestUser(): Promise<void> {
|
|
const payload = await getPayload({ config })
|
|
|
|
// Delete existing test user if any
|
|
await payload.delete({
|
|
collection: 'users',
|
|
where: {
|
|
email: {
|
|
equals: testUser.email,
|
|
},
|
|
},
|
|
})
|
|
|
|
// Create fresh test user
|
|
await payload.create({
|
|
collection: 'users',
|
|
data: testUser,
|
|
})
|
|
}
|
|
|
|
/**
|
|
* Cleans up test user after tests
|
|
*/
|
|
export async function cleanupTestUser(): Promise<void> {
|
|
const payload = await getPayload({ config })
|
|
|
|
await payload.delete({
|
|
collection: 'users',
|
|
where: {
|
|
email: {
|
|
equals: testUser.email,
|
|
},
|
|
},
|
|
})
|
|
}
|