My build fails because of typescript errors in a test
describe('SearchDetailed inAccountNumberRange', () => {
it('returns true as no accountStart', () => {
let wrapper = shallowMount(SearchDetailed, { global: _global, props })
expect(wrapper.vm.inAccountNumberRange('452')).toBe(true)
})
})
The error message is error TS2339: Property 'inAccountNumberRange' does not exist on type '{ $: ComponentInternalInstance; $data: {}; $props: Partial<{ results: Item[]; }> & Omit<Readonly<{ results?: unknown; accountStart?: unknown; accountEnd?: unknown; } & { results: Item[]; } & { ...; }> & VNodeProps & AllowedComponentProps & ComponentCustomProps, "results">; ... 10 more ...; $watch(source: string | Fu...'.
inAccountNumberRange is a method in the SearchDetailed component
The test runs fine, only the build fails.
The test is in the same folder as the component
My build fails because of typescript errors in a test
The error message is
error TS2339: Property 'inAccountNumberRange' does not exist on type '{ $: ComponentInternalInstance; $data: {}; $props: Partial<{ results: Item[]; }> & Omit<Readonly<{ results?: unknown; accountStart?: unknown; accountEnd?: unknown; } & { results: Item[]; } & { ...; }> & VNodeProps & AllowedComponentProps & ComponentCustomProps, "results">; ... 10 more ...; $watch(source: string | Fu...'.inAccountNumberRangeis a method in theSearchDetailedcomponentThe test runs fine, only the build fails.
The test is in the same folder as the component