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