summary refs log tree commit diff
path: root/api/tests/routes.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'api/tests/routes.test.ts')
-rw-r--r--api/tests/routes.test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/tests/routes.test.ts b/api/tests/routes.test.ts
index ed391dfb..2c265ee3 100644
--- a/api/tests/routes.test.ts
+++ b/api/tests/routes.test.ts
@@ -43,7 +43,7 @@ const request = async (path: string, opts: any = {}): Promise<any> => {
 
 	var data = await response.text();
 	try {
-		data = JSON.stringify(data);
+		data = JSON.parse(data);
 		if (response.status >= 400) throw data;
 		return data;
 	} catch (error) {