From 1f65907f70057763bde07f690af0095ad3b334fc Mon Sep 17 00:00:00 2001 From: Andrew Bastin Date: Thu, 20 Aug 2020 20:07:59 -0400 Subject: [PATCH] Export lenses array for helping testing --- helpers/lenses/lenses.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/lenses/lenses.js b/helpers/lenses/lenses.js index 6423bcf10..6f2cc6d71 100644 --- a/helpers/lenses/lenses.js +++ b/helpers/lenses/lenses.js @@ -4,7 +4,7 @@ import imageLens from "./imageLens" import htmlLens from "./htmlLens" import xmlLens from "./xmlLens" -const lenses = [jsonLens, imageLens, htmlLens, xmlLens, rawLens] +export const lenses = [jsonLens, imageLens, htmlLens, xmlLens, rawLens] export function getSuitableLenses(response) { const result = []