it('should accept valid options', () => {
    configureA11y();

    configureA11y({});

    configureA11y({ reporter: 'v1' });

    configureA11y({ branding: { brand: 'test' } });
  });
  it('should error on invalid options', () => {
    // $ExpectError
    configureA11y(123);

    // $ExpectError
    configureA11y([]);

    // $ExpectError
    configureA11y('string');

    // $ExpectError
    configureA11y({ disableOtherRules: 'string' });
  });