From c4684d3161505d15c585a5dd0f095cdd527d45b5 Mon Sep 17 00:00:00 2001 From: Evan You Date: Sun, 14 Apr 2024 22:49:16 +0800 Subject: [PATCH] chore: amend test case name [ci skip] --- packages/reactivity/__tests__/reactiveArray.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/reactivity/__tests__/reactiveArray.spec.ts b/packages/reactivity/__tests__/reactiveArray.spec.ts index d405608f8c4..e32b5deeb6d 100644 --- a/packages/reactivity/__tests__/reactiveArray.spec.ts +++ b/packages/reactivity/__tests__/reactiveArray.spec.ts @@ -99,7 +99,7 @@ describe('reactivity/reactive/Array', () => { expect(fn).toHaveBeenCalledTimes(1) }) - test("should reactive when mutate array's index", () => { + test('should track hasOwnProperty call with index', () => { const original = [1, 2, 3] const observed = reactive(original)