From e74cdf1c71e36aec6221480e570929c1efc540a4 Mon Sep 17 00:00:00 2001 From: Rico Kahler Date: Wed, 25 Sep 2024 07:32:51 -0500 Subject: [PATCH] remove useless test --- perf/efps/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/perf/efps/index.ts b/perf/efps/index.ts index 4074a42b9a7..cffb809f1b5 100644 --- a/perf/efps/index.ts +++ b/perf/efps/index.ts @@ -18,7 +18,7 @@ import {exec} from './helpers/exec' import {runTest} from './runTest' import article from './tests/article/article' import recipe from './tests/recipe/recipe' -import singleString from './tests/singleString/singleString' +// import singleString from './tests/singleString/singleString' import synthetic from './tests/synthetic/synthetic' import {type EfpsResult} from './types' @@ -26,7 +26,7 @@ const tag = 'latest' const deltaThreshold = 0.1 const headless = true -const tests = [singleString, recipe, article, synthetic] +const tests = [recipe, article, synthetic] const projectId = process.env.VITE_PERF_EFPS_PROJECT_ID! const dataset = process.env.VITE_PERF_EFPS_DATASET!