File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,10 @@ export {
7
7
teardownGlobalA11yHooks ,
8
8
DEFAULT_A11Y_TEST_HELPER_NAMES ,
9
9
} from './setup-global-a11y-hooks' ;
10
- export { setCustomReporter } from './reporter' ;
10
+ export {
11
+ setCustomReporter ,
12
+ DEFAULT_REPORTER as _DEFAULT_REPORTER ,
13
+ } from './reporter' ;
11
14
export {
12
15
TEST_SUITE_RESULTS as _TEST_SUITE_RESULTS ,
13
16
middlewareReporter as _middlewareReporter ,
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import formatViolation from './format-violation';
4
4
import { A11yAuditReporter } from './types' ;
5
5
import { storeResults } from './logger' ;
6
6
7
- const DEFAULT_REPORTER = async ( results : AxeResults ) => {
7
+ export const DEFAULT_REPORTER = async ( results : AxeResults ) => {
8
8
let violations = results . violations ;
9
9
10
10
storeResults ( results ) ;
You can’t perform that action at this time.
0 commit comments