File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ module.exports = {
1212 rules : {
1313 'no-console' : 'off' ,
1414 'import/no-unresolved' : 'off' ,
15+ 'jest/unbound-method' : 'off' ,
1516
1617 'testing-library/no-dom-import' : 'off' ,
1718 'testing-library/prefer-screen-queries' : 'off' ,
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import {OptionsReceived as PrettyFormatOptions} from 'pretty-format'
1111export * from '@testing-library/dom'
1212
1313type Debug = (
14- baseElement ?: Element | DocumentFragment | Array < Element | DocumentFragment > ,
14+ baseElement ?: Array < DocumentFragment | Element > | DocumentFragment | Element ,
1515 maxLength ?: number ,
1616 options ?: PrettyFormatOptions ,
1717) => void
@@ -28,7 +28,7 @@ export interface RenderResult extends BoundFunctions<typeof queries> {
2828
2929type VueTestUtilsRenderOptions = Omit <
3030 MountingOptions < Record < string , any > > ,
31- 'attachTo' | 'shallow ' | 'propsData '
31+ 'attachTo' | 'propsData ' | 'shallow '
3232>
3333interface VueTestingLibraryRenderOptions {
3434 /**
@@ -42,7 +42,7 @@ interface VueTestingLibraryRenderOptions {
4242 container ?: Element
4343 baseElement ?: Element
4444}
45- type RenderOptions = VueTestUtilsRenderOptions & VueTestingLibraryRenderOptions
45+ type RenderOptions = VueTestingLibraryRenderOptions & VueTestUtilsRenderOptions
4646
4747export function render (
4848 TestComponent : any , // this makes me sad :sob:
You can’t perform that action at this time.
0 commit comments