From e14a909ebf06544dc3d17f9ba665afa65f5ff10c Mon Sep 17 00:00:00 2001 From: Traines Date: Wed, 18 Dec 2024 00:40:37 +0000 Subject: [PATCH] linting --- test/e2e/lib/validators.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/lib/validators.js b/test/e2e/lib/validators.js index c7a79ffc..62349a65 100644 --- a/test/e2e/lib/validators.js +++ b/test/e2e/lib/validators.js @@ -24,11 +24,11 @@ const createValidateRealtimeDataUpdatedAt = (cfg) => { const createValidateProducts = (cfg) => { const validateProducts = (val, p, name = 'products') => { return; // TODO - a.ok(isObj(p), name + ' must be an object'); + /*a.ok(isObj(p), name + ' must be an object'); for (let product of cfg.products) { const msg = `${name}[${product.id}] must be a boolean`; a.strictEqual(typeof p[product.id], 'boolean', msg); - } + }*/ }; return validateProducts; };