@a11ycore/reporter 中文文档教程
@a11ycore/reporter
Description
Reporter 是一个允许您将 a11y 结果与 A11ycore 报告平台同步的工具。 如果您还没有注册一个帐户,您将无法使用这个包。 您可以在此处注册;
Usage
const { runA11yJest } = require('@a11ycore/jest');
const { reporter } = require('@a11ycore/reporter');
const { normaliseBuild } = require('@a11ycore/utils');
// can be found in the details page of your a11ycore project
const apiKey = process.env.A11Y_API_KEY;
const projectId = process.env.PROJECT_ID
describe("jest", () => {
test("it should call the runA11yMethod", async () => {
const element = React.createElement("img", { src: "#" });
const html = ReactDOMServer.renderToString(element);
const results = await runA11yJest(html)
expect(results.violations.length).toBeGreaterThan(1);
const normalisedResults = normaliseBuild(projectId, results); // if not done your results will not process and may be rejected
await reporter(projectId, apiKey, normaliseBuild(projectId, results)); // you can then login to your a11ycore dashbaord to see results
});
});
@a11ycore/reporter
Description
The reporter is a tool to allow you to sync a11y results with the A11ycore reporting platform. If you have not signed up for an account you will not be able to use this package. You can sign up here;
Usage
const { runA11yJest } = require('@a11ycore/jest');
const { reporter } = require('@a11ycore/reporter');
const { normaliseBuild } = require('@a11ycore/utils');
// can be found in the details page of your a11ycore project
const apiKey = process.env.A11Y_API_KEY;
const projectId = process.env.PROJECT_ID
describe("jest", () => {
test("it should call the runA11yMethod", async () => {
const element = React.createElement("img", { src: "#" });
const html = ReactDOMServer.renderToString(element);
const results = await runA11yJest(html)
expect(results.violations.length).toBeGreaterThan(1);
const normalisedResults = normaliseBuild(projectId, results); // if not done your results will not process and may be rejected
await reporter(projectId, apiKey, normaliseBuild(projectId, results)); // you can then login to your a11ycore dashbaord to see results
});
});
更多
你可能也喜欢
- 20k-demo-road 中文文档教程
- @0xcert/ethereum-erc721 中文文档教程
- @0xsequence/metadata 中文文档教程
- @1eeing/scroll-listener 中文文档教程
- @1hive/oracle-token-balance 中文文档教程
- @21epub/create-storybook-react-library 中文文档教程
- @3b4b/circle-button-ad 中文文档教程
- @7c/validurl 中文文档教程
- @8base/web-auth0-auth-client 中文文档教程
- @8trhieu/ckeditor5-build-classic-custom 中文文档教程