()
| 238 | }; |
| 239 | |
| 240 | export async function devLogin(): Promise<string[]> { |
| 241 | await resetDefaultUser(); |
| 242 | const res = await superRequest('/signin', { method: 'GET' }); |
| 243 | expect(res.status).toBe(302); |
| 244 | return res.get('Set-Cookie'); |
| 245 | } |
| 246 | |
| 247 | export async function seedExam(): Promise<void> { |
| 248 | const query = { where: { id: examJson.id } }; |
no test coverage detected