diff --git a/test/verification.spec.ts b/test/verification.spec.ts index 34a956f..206c25b 100644 --- a/test/verification.spec.ts +++ b/test/verification.spec.ts @@ -823,7 +823,7 @@ cases.forEach(testData => { function decorator(target: unknown, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor) { const originalMethod = descriptor.value; if (originalMethod !== undefined) { - descriptor.value = new Proxy(originalMethod, {}) + descriptor.value = new Proxy(originalMethod, {}); } }