Skip to content

Commit 8c1c53e

Browse files
committed
CCM-12666: add specific accessibility issue to see tests fail in pipeline
1 parent 3444f25 commit 8c1c53e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

frontend/src/components/forms/ChooseMessageOrder/ChooseMessageOrder.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* eslint-disable jsx-a11y/alt-text */
2+
/* eslint-disable @next/next/no-img-element */
13
'use client';
24

35
import { useActionState, useState } from 'react';
@@ -43,6 +45,7 @@ export const ChooseMessageOrder = () => {
4345
return (
4446
<NHSNotifyMain>
4547
<NhsNotifyErrorSummary errorState={errorState} />
48+
<img src='broken' />
4649
<NHSNotifyRadioButtonForm
4750
formId='choose-message-order'
4851
radiosId='messageOrder'

tests/test-team/config/playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default defineConfig({
99
forbidOnly: !!process.env.CI,
1010
retries: 0,
1111
/* Opt out of parallel tests on CI. */
12-
workers: process.env.CI ? 4 : 1,
12+
workers: process.env.CI ? 4 : undefined,
1313
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
1414
reporter: [
1515
['line'],

0 commit comments

Comments
 (0)