diff --git a/uni_modules/uts-tests/utssdk/Array.uts b/uni_modules/uts-tests/utssdk/Array.uts index f2231d6f9027c5b3cd4d3133e2c95ca38a4c6266..ba51615c2ff737a335bf35facd28897937512120 100644 --- a/uni_modules/uts-tests/utssdk/Array.uts +++ b/uni_modules/uts-tests/utssdk/Array.uts @@ -149,6 +149,7 @@ export function testArray() : Result { expect(array2.every(isBelowThreshold)).toEqual(false); }) test("fill", () => { + // #TEST Array.fill const array1 : number[] = [1, 2, 3, 4]; let ret1 = array1.fill(0, 2, 4) console.log(ret1); //[1, 2, 0, 0]