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