mirror of
https://github.com/github/codeql.git
synced 2026-02-20 17:03:41 +01:00
9 lines
305 B
Plaintext
9 lines
305 B
Plaintext
import javascript
|
|
import experimental.adaptivethreatmodeling.EndpointFeatures
|
|
import TestUtil
|
|
|
|
// every endpoint should have at least one feature value, otherwise the test source is likely malformed
|
|
from Endpoint endpoint
|
|
where not exists(EndpointFeature f | exists(f.getValue(endpoint)))
|
|
select endpoint
|