2022-02-27 03:07:39 +01:00
|
|
|
import define from '../define.js';
|
|
|
|
import { ApiError } from '../error.js';
|
|
|
|
import { resetDb } from '@/db/postgre.js';
|
2021-08-12 12:05:07 +02:00
|
|
|
|
|
|
|
export const meta = {
|
2022-06-10 07:25:20 +02:00
|
|
|
tags: ['non-productive'],
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: false,
|
2021-08-12 12:05:07 +02:00
|
|
|
|
2022-06-10 07:25:20 +02:00
|
|
|
description: 'Only available when running with <code>NODE_ENV=testing</code>. Reset the database and flush Redis.',
|
|
|
|
|
2021-08-12 12:05:07 +02:00
|
|
|
errors: {
|
|
|
|
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2021-08-12 12:05:07 +02:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2022-02-19 06:05:32 +01:00
|
|
|
type: 'object',
|
|
|
|
properties: {},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 18:12:50 +01:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 06:05:32 +01:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2021-08-12 12:05:07 +02:00
|
|
|
if (process.env.NODE_ENV !== 'test') throw 'NODE_ENV is not a test';
|
|
|
|
|
|
|
|
await resetDb();
|
2021-09-18 19:23:12 +02:00
|
|
|
|
|
|
|
await new Promise(resolve => setTimeout(resolve, 1000));
|
2021-08-12 12:05:07 +02:00
|
|
|
});
|