From d41ca78bf40ab7f957df7cb7244a4161e8f3f37f Mon Sep 17 00:00:00 2001 From: Dominik Moritz Date: Tue, 2 Apr 2024 19:41:51 -0400 Subject: [PATCH] rm bad test --- js/test/unit/vector/vector-tests.ts | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/js/test/unit/vector/vector-tests.ts b/js/test/unit/vector/vector-tests.ts index 159a98bda7b20..70b24bcc14481 100644 --- a/js/test/unit/vector/vector-tests.ts +++ b/js/test/unit/vector/vector-tests.ts @@ -248,17 +248,6 @@ describe(`toArray()`, () => { const array = vector.toArray(); expect(array).toHaveLength(26); }); - - test(`when stride is 2`, () => { - const d1 = vectorFromArray([0, 1, 2], new DateMillisecond()).data[0]; - const d2 = vectorFromArray([3, 4, 5], new DateMillisecond()).data[0]; - - const vector = new Vector([d1, d2]); - - const array = Array.from(vector.toArray()); - expect(array).toHaveLength(6 * 2); - expect(Array.from(array)).toMatchObject([0, 0, 1, 0, 2, 0, 3, 0, 4, 0, 5, 0]); - }); }); // Creates some basic tests for the given vector.