UNPKG

431 BTypeScriptView Raw
1import { RunOptions } from 'axe-core';
2/**
3 * Sets run options specific to a test.
4 *
5 * @param options Axe {RunOptions} to be provided to the audit helper.
6 */
7export declare function setRunOptions(options?: RunOptions): void;
8/**
9 * Gets run options specific to a test.
10 *
11 * @param context Test context object, accessed using `@ember/test-helpers` `getContext` function.
12 */
13export declare function getRunOptions(): RunOptions;