From e47aaedb95e51222744bdf32ad5a8ce643a290eb Mon Sep 17 00:00:00 2001 From: Brian Donovan <1938+eventualbuddha@users.noreply.github.com> Date: Fri, 8 Mar 2024 14:07:57 -0800 Subject: [PATCH] test: remove useless test code This was here since the `Lines` class was originally added in 1859d1441605516ecdad0a69be9c4242efae0513, but `exports.testBasic` was never defined and so this always was `undefined`. --- test/lines.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/lines.ts b/test/lines.ts index 61446a04..dcb0ad8e 100644 --- a/test/lines.ts +++ b/test/lines.ts @@ -129,10 +129,6 @@ describe("lines", function () { lines.eachPos(compare); - // Try a bunch of crazy positions to verify equivalence for - // out-of-bounds input positions. - fromString(exports.testBasic).eachPos(compare); - let original = fromString(" ab" + eol + " c"), indented = original.indentTail(4), reference = fromString(" ab" + eol + " c");