mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
11 lines
278 B
JavaScript
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);
|
|
});
|
|
});
|