We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 681a7e9 commit 469167dCopy full SHA for 469167d
src/App.vue
@@ -11,6 +11,7 @@ const close = () => {
11
)
12
}
13
14
+// eslint-disable-next-line no-unused-vars
15
const actions = [
16
{
17
label: 'Valider',
@@ -28,7 +29,6 @@ const actions = [
28
29
onClick: () => { isModalOpen.value = false },
30
},
31
]
-
32
</script>
33
34
<template>
src/components/DsfrTable/DsfrTable.spec.js
@@ -68,8 +68,8 @@ describe('DsfrTable', () => {
68
69
// Then
70
expect(trs).toHaveLength(4)
71
- expect(successEl).toHaveLength(4)
72
- expect(errorEl).toHaveLength(4)
73
- expect(infoEl).toHaveLength(4)
+ expect(successEl).toHaveLength(1)
+ expect(errorEl).toHaveLength(1)
+ expect(infoEl).toHaveLength(1)
74
})
75
0 commit comments