From 90caa3f8b02311f269efa741e6a340b2c8fe59ff Mon Sep 17 00:00:00 2001 From: Zixuan Qian Date: Mon, 21 Aug 2023 16:45:43 -0700 Subject: [PATCH] Update dirtests.ts --- node/test/dirtests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/test/dirtests.ts b/node/test/dirtests.ts index cfea46310..bd10af392 100644 --- a/node/test/dirtests.ts +++ b/node/test/dirtests.ts @@ -31,7 +31,7 @@ describe('Dir Operation Tests', function () { this.timeout(1000); console.log('node version: ' + process.version); - const supportedNodeVersions = ['v16.13.0']; + const supportedNodeVersions = ['v20.3.1']; if (supportedNodeVersions.indexOf(process.version) === -1) { assert.fail(`expected node node version to be one of ${supportedNodeVersions.map(o => o).join(', ')}. actual: ` + process.version); }