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 38086d3 commit 9bd1e5aCopy full SHA for 9bd1e5a
src/components/dropdown/dropdown-form.spec.js
@@ -21,9 +21,7 @@ describe('dropdown-form', () => {
21
22
it('has class "was-validated" when validated=true', async () => {
23
const wrapper = mount(BDropdownForm, {
24
- context: {
25
- props: { validated: true }
26
- }
+ propsData: { validated: true }
27
})
28
expect(wrapper.is('li')).toBe(true)
29
@@ -42,9 +40,7 @@ describe('dropdown-form', () => {
42
40
43
41
it('has attribute novalidate when novalidate=true', async () => {
44
45
46
- props: { novalidate: true }
47
+ propsData: { novalidate: true }
48
49
50
0 commit comments