Files
codeql/javascript/ql/experimental/adaptivethreatmodeling/test/endpoint_unit_tests/index.test.js
2022-02-02 13:15:04 +00:00

11 lines
278 B
JavaScript

/*
* There's unit tests in this file, so we should mark any non-Sink, non-NotASink endpoints within it
* as LikelyNotASink.
*/
describe('Unit test suite', () => {
it('not flow from source', () => {
User.find({ 'isAdmin': true });
expect(true).toBe(true);
});
});