mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2025-12-11 05:57:04 +03:00
Fix any type
This commit is contained in:
@@ -4,7 +4,7 @@ import {getHash} from '../../src/utils/getHash';
|
|||||||
import {db} from '../../src/databases/databases';
|
import {db} from '../../src/databases/databases';
|
||||||
import {LockCategory} from '../../src/types/segments.model';
|
import {LockCategory} from '../../src/types/segments.model';
|
||||||
|
|
||||||
const deepEquals = (a,b) => {
|
const deepEquals = (a: string[],b: string[]) => {
|
||||||
a.forEach((e) => { if (!b.includes(e)) return false; });
|
a.forEach((e) => { if (!b.includes(e)) return false; });
|
||||||
return true;
|
return true;
|
||||||
};
|
};
|
||||||
@@ -65,7 +65,7 @@ describe('lockCategoriesRecords', () => {
|
|||||||
.then(async res => {
|
.then(async res => {
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
const data = await res.json();
|
const data = await res.json();
|
||||||
if (deepEquals(data, expected)) {
|
if (deepEquals(data.submitted, expected.submitted)) {
|
||||||
done();
|
done();
|
||||||
} else {
|
} else {
|
||||||
done("Incorrect response: expected " + JSON.stringify(expected) + " got " + JSON.stringify(data));
|
done("Incorrect response: expected " + JSON.stringify(expected) + " got " + JSON.stringify(data));
|
||||||
@@ -158,7 +158,7 @@ describe('lockCategoriesRecords', () => {
|
|||||||
.then(async res => {
|
.then(async res => {
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
const data = await res.json();
|
const data = await res.json();
|
||||||
if (deepEquals(data, expected)) {
|
if (deepEquals(data.submitted, expected.submitted)) {
|
||||||
done();
|
done();
|
||||||
} else {
|
} else {
|
||||||
done("Incorrect response: expected " + JSON.stringify(expected) + " got " + JSON.stringify(data));
|
done("Incorrect response: expected " + JSON.stringify(expected) + " got " + JSON.stringify(data));
|
||||||
@@ -670,7 +670,7 @@ describe('lockCategoriesRecords', () => {
|
|||||||
.then(async res => {
|
.then(async res => {
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
const data = await res.json();
|
const data = await res.json();
|
||||||
if (deepEquals(data, expected)) {
|
if (deepEquals(data.categories, expected.categories)) {
|
||||||
done();
|
done();
|
||||||
} else {
|
} else {
|
||||||
done("Incorrect response: expected " + JSON.stringify(expected) + " got " + JSON.stringify(data));
|
done("Incorrect response: expected " + JSON.stringify(expected) + " got " + JSON.stringify(data));
|
||||||
|
|||||||
Reference in New Issue
Block a user