diff --git a/.gitignore b/.gitignore index 97f83b858..722334300 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ tags.* src/out.json keys.json +.env diff --git a/tests/unit-tests.test.js b/tests/unit-tests.test.js index df82ba83d..c9a7394a4 100644 --- a/tests/unit-tests.test.js +++ b/tests/unit-tests.test.js @@ -16,12 +16,11 @@ test('wappalyzer successful', () => { assert( typeof firstView.detected === 'object' && typeof firstView.detected_apps === 'object' && - typeof firstView.detected_technologies === 'object' && - typeof firstView.detected_raw === 'object', + typeof firstView.detected_technologies === 'object', 'not all technology lists are present' ) assert( - firstView.detected_raw.length > 1, + Object.keys(firstView.detected_technologies).length > 1, 'number of technologies detected <=1' ) })