Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@advanced-rest-client/a11y-suite

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@advanced-rest-client/a11y-suite

a11y suite to test accessibility of web components

  • 1.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
increased by100%
Maintainers
1
Weekly downloads
 
Created
Source

a11ySuite

Performs accessibility test using axe-core.

It accepts a template string from which a fixture is created or already created element. The later option is useful to perform accessibility test for the element at certain state.

Rules can be ignored by providing configuration option which accepts array of rule names to ignore.

This is temporary package until @open-wc implement similar functionality in their testing package.

Usage

Installation

npm install --save-dev @advanced-rest-client/a11y-suite

Running the tests

import { a11ySuite } from '@advanced-rest-client/a11y-suite/index.js';
import { fixture } from '@open-wc/testing';

const fix = await fixture(`<div role="listbox">
  <my-component>item</my-component>
  </div>`);

describe('<my-component>', () => {
  a11ySuite('Normal state', fix);
  a11ySuite('Disabled state', `<div role="listbox"><my-component disabled>item</my-component></div>`);
  a11ySuite('This passes error in axa', `<div aria-labelledby="non-existing-id"></div><label id="my-id">Title</label>`, ['badAriaAttributeValue']);
});

Ignoring rules

The test below passes even though it is invalid because the rule testing for valid aria attributes is disabled.

describe('<my-component>', () => {
  await a11ySuite('Test Suite', '<div aria-labelledby="test-x"></div>', {
    ignoredRules: ['aria-valid-attr-value']
  });
});

Manipulating component's state before test

You can change the state of the component by creating a fixture before passing it to the suite or by passing afterFixture callback function that is invoked when fixture is created but before the test is performed.

Direct state manipulation
import { a11ySuite } from '@advanced-rest-client/a11y-suite/index.js';
import { fixture, aTimeout } from '@open-wc/testing';

describe('<my-component>', () => {
  let element;
  before(async () => {
    element = await fixture(`<my-dialog>
      <h1>Dialog</h1>
    </my-dialog>`);
  });

  it('Passes a11y when opened', async () => {
    element.opened = true;
    async aTimeout();
    await a11ySuite('Opened dialog', element);
  });
});
afterFixture callback

If afterFixture returns a promise then the test is executed when the promise is resolved.

import { a11ySuite } from '@advanced-rest-client/a11y-suite/index.js';
import { fixture, aTimeout } from '@open-wc/testing';

describe('<my-component>', () => {
  it('Passes a11y when opened', async () => {
    await a11ySuite('Opened dialog', `<my-dialog><h1>Dialog</h1></my-dialog>`, {
      afterFixture: async (element) => {
        element.opened = true;
        async aTimeout();
      }
    });
  });
});

Development

git clone https://github.com/advanced-rest-client/a11y-suite
cd a11y-suite
npm install

Running the tests

npm test

FAQs

Package last updated on 18 Jul 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc