type AssertIsDefined = (value: T) => asserts value is NonNullable; export const jestExpectToBeDefined: AssertIsDefined = (value: T) => { expect(value).toBeDefined(); expect(value).not.toBeNull(); };