`valid-expect` should check that if there's a `rejects` or `resolves` on an `expect`, that it's either `await`ed or `return`ed. Example where we should warn: ```js test('some test', () => { expect(Promise.resolve('hello')).resolves.toBe('hello'); }); ```