diff --git a/uni_modules/uts-tests/utssdk/Array.uts b/uni_modules/uts-tests/utssdk/Array.uts index f9130f64e81d4ce32fe6a07b42656dd13be09ffc..8e43cac23a165d294fd09f82da1d1f86815f2bcd 100644 --- a/uni_modules/uts-tests/utssdk/Array.uts +++ b/uni_modules/uts-tests/utssdk/Array.uts @@ -146,6 +146,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]