it('throws if Actions is a class without base Actions class in its prototype chain', () => {
      const flux = new Flux();
      class ForgotToExtendActions {}

      expect(flux.createActions.bind(flux, 'Flux', ForgotToExtendActions))