mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 09:57:29 -07:00
Refactor
This commit is contained in:
parent
64087acfee
commit
8a51b89f0f
1 changed files with 7 additions and 8 deletions
15
test/api.ts
15
test/api.ts
|
@ -32,18 +32,17 @@ const async = (fn: Function) => (done: Function) => {
|
|||
});
|
||||
};
|
||||
|
||||
const request = (endpoint: string, params: any, me?: any): Promise<ChaiHttp.Response> => new Promise((ok, ng) => {
|
||||
const request = async (endpoint: string, params: any, me?: any): Promise<ChaiHttp.Response> => {
|
||||
const auth = me ? {
|
||||
i: me.account.token
|
||||
i: me.token
|
||||
} : {};
|
||||
|
||||
assert.request(server)
|
||||
const res = await assert.request(server)
|
||||
.post(endpoint)
|
||||
.send(Object.assign(auth, params))
|
||||
.end((err, res) => {
|
||||
ok(res);
|
||||
});
|
||||
});
|
||||
.send(Object.assign(auth, params));
|
||||
|
||||
return res;
|
||||
};
|
||||
|
||||
const signup = async (params?: any) => {
|
||||
const q = Object.assign({
|
||||
|
|
Loading…
Reference in a new issue