it('take into account the format.format prop', () => {
    const wrapper = shallow(
      <ReactFormattedAmount format="%n =-= %u" amount={200} currency="€" />
    );
    expect(wrapper.html()).to.equal('<span>2.00 =-= €</span>');