From 5bbdcc129853ae5cbb8a0f8bb23238f2114c461f Mon Sep 17 00:00:00 2001 From: Sam Rose Date: Thu, 18 Jul 2024 11:08:42 +0100 Subject: [PATCH] Remove unused function. --- packages/server/src/api/routes/tests/search.spec.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/packages/server/src/api/routes/tests/search.spec.ts b/packages/server/src/api/routes/tests/search.spec.ts index cbfa05e343..68f61ba28d 100644 --- a/packages/server/src/api/routes/tests/search.spec.ts +++ b/packages/server/src/api/routes/tests/search.spec.ts @@ -184,15 +184,6 @@ describe.each([ return row } - // By default, the global `table` variable is used to search against. If you - // need to, though, you can specify a different table to search against. You - // may wish to do this in a nested describe block that defines a different - // table. - againstTable(table: Table) { - this.query.tableId = table._id! - return this - } - // Asserts that the query returns rows matching exactly the set of rows // passed in. The order of the rows matters. Rows returned in an order // different to the one passed in will cause the assertion to fail. Extra