describe('getSpacing', () => {
  it('should return spacing', () => {
    const spacings: string[] = [];
    Object.keys(SpacingsAfter).forEach(x => spacings.push(getSpacing(theme)(x)));
    expect(isArrayUnique(spacings)).toBeTruthy();