Skip to content

Commit

Permalink
Merge branch 'main' into jdv/re-categorize-block-plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
tunetheweb authored Jul 14, 2024
2 parents b7eb4e3 + 1cec581 commit 3b48d84
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ tags.*
src/out.json

keys.json
.env
5 changes: 2 additions & 3 deletions tests/unit-tests.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'
)
})

0 comments on commit 3b48d84

Please sign in to comment.