From cf1159e6c027dc7e9920085b47cc37f867c3b7e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Fri, 1 Mar 2024 18:28:08 +0100 Subject: [PATCH] tests: Remove assertArraysEqual() It is tied to the legacy jsUnit framework and now unused. Part-of: --- tests/common/assertions.js | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 tests/common/assertions.js diff --git a/tests/common/assertions.js b/tests/common/assertions.js deleted file mode 100644 index c254da0cc..000000000 --- a/tests/common/assertions.js +++ /dev/null @@ -1,15 +0,0 @@ -const JsUnit = imports.jsUnit; - -/** - * Asserts if two arrays have the same length and each element passes assertEquals - * - * @template T - * @param {string} errorMessage an error message if the arrays are not equal - * @param {T[]} array1 the first array - * @param {T[]} array2 the second array - */ -export function assertArrayEquals(errorMessage, array1, array2) { - JsUnit.assertEquals(`${errorMessage} length`, array1.length, array2.length); - for (let j = 0; j < array1.length; j++) - JsUnit.assertEquals(`${errorMessage} item ${j}`, array1[j], array2[j]); -}