test(types): test computed get/set type inference (#1709)

This commit is contained in:
Carlos Rodrigues 2020-07-28 20:40:23 +01:00 committed by GitHub
parent 06cad62ee8
commit 421a70de5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -269,6 +269,19 @@ describe('type inference w/ options API', () => {
d(): number {
expectType<number>(this.b)
return this.b + 1
},
e: {
get(): number {
expectType<number>(this.b)
expectType<number>(this.d)
return this.b + this.d
},
set(v: number) {
expectType<number>(this.b)
expectType<number>(this.d)
expectType<number>(v)
}
}
},
watch: {
@ -286,6 +299,8 @@ describe('type inference w/ options API', () => {
expectType<number>(this.c)
// computed
expectType<number>(this.d)
// computed get/set
expectType<number>(this.e)
},
methods: {
doSomething() {
@ -297,6 +312,8 @@ describe('type inference w/ options API', () => {
expectType<number>(this.c)
// computed
expectType<number>(this.d)
// computed get/set
expectType<number>(this.e)
},
returnSomething() {
return this.a
@ -311,6 +328,8 @@ describe('type inference w/ options API', () => {
expectType<number>(this.c)
// computed
expectType<number>(this.d)
// computed get/set
expectType<number>(this.e)
// method
expectType<() => number | undefined>(this.returnSomething)
}