Introduce e2e test

This commit is contained in:
syuilo
2021-08-12 19:05:07 +09:00
parent 77456ae0bc
commit b81ff340b1
18 changed files with 805 additions and 32 deletions

View File

@@ -0,0 +1,21 @@
import $ from 'cafy';
import define from '../define';
import { ApiError } from '../error';
import { resetDb } from '@/db/postgre';
export const meta = {
requireCredential: false as const,
params: {
},
errors: {
}
};
export default define(meta, async (ps, user) => {
if (process.env.NODE_ENV !== 'test') throw 'NODE_ENV is not a test';
await resetDb();
});