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