describe('debug', () => {
      it('should be a callable function with 2 params', () => {
        expect(inheritInstance.debug).toEqual(expect.any(Function));
        expect(inheritInstance.debug).toHaveLength(2);
        expect(inheritInstance.debug(inheritInstance.actions)).toBe(undefined);