it('take into account the format.separator prop', () => {
    const wrapper = shallow(
      <ReactFormattedAmount separator="SEPARATOR" amount={200} currency="€" />
    );
    expect(wrapper.html()).to.equal('<span>2SEPARATOR00 €</span>');