From 8f90479d33b622bbb3b06a05df40dfae588418d1 Mon Sep 17 00:00:00 2001 From: mahaifeng Date: Wed, 4 Sep 2024 15:27:17 +0800 Subject: [PATCH] =?UTF-8?q?[array]=E5=8E=BB=E9=99=A4=E6=89=8B=E5=8A=A8?= =?UTF-8?q?=E7=94=9F=E6=88=90=E7=9A=84=E4=BB=A3=E7=A0=81(=E5=8E=BB?= =?UTF-8?q?=E6=8E=89=E6=96=B9=E6=B3=95=E4=B8=8B=E9=9D=A2=E7=9A=84=E7=A4=BA?= =?UTF-8?q?=E4=BE=8B=E4=BB=A3=E7=A0=81)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- uni_modules/uts-tests/utssdk/Array.uts | 1 + 1 file changed, 1 insertion(+) diff --git a/uni_modules/uts-tests/utssdk/Array.uts b/uni_modules/uts-tests/utssdk/Array.uts index f9130f6..8e43cac 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] -- GitLab