chore: Upgrade Cypress to 13.4.0 (#8271)

This commit is contained in:
Pranav Raj S
2023-10-31 19:39:34 -07:00
committed by GitHub
parent f34cd3ea61
commit 1e70223ed7
17 changed files with 423 additions and 541 deletions

View File

@@ -136,6 +136,7 @@ export default {
toStateName: 'labels_list',
showModalForNewItem: true,
modalName: 'AddLabel',
dataTestid: 'sidebar-new-label-button',
children: this.labels.map(label => ({
id: label.id,
label: label.title,

View File

@@ -78,6 +78,7 @@
variant="clear"
color-scheme="secondary"
icon="add"
:data-testid="menuItem.dataTestid"
@click="e => newLinkClick(e, navigate)"
>
{{ $t(`SIDEBAR.${menuItem.newLinkTag}`) }}

View File

@@ -17,6 +17,7 @@
autocomplete="off"
:required="required"
:placeholder="placeholder"
:data-testid="dataTestid"
:value="value"
:class="{
'focus:ring-red-600 ring-red-600': hasError,
@@ -71,6 +72,10 @@ export default {
type: String,
default: '',
},
dataTestid: {
type: String,
default: '',
},
},
methods: {
onInput(e) {