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