소스 검색

chore: amend test case name [ci skip]

Evan You 2 년 전
부모
커밋
c4684d3161
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      packages/reactivity/__tests__/reactiveArray.spec.ts

+ 1 - 1
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)