From e9d53d216dc8b381dab3f3c58e608fffc840fdfd Mon Sep 17 00:00:00 2001 From: Mikhail Avdeev Date: Mon, 16 Dec 2024 15:51:36 +0300 Subject: [PATCH] chore: delete unused imports --- test/deps.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/deps.test.js b/test/deps.test.js index 2adbf0c982..1fb6e1efd4 100644 --- a/test/deps.test.js +++ b/test/deps.test.js @@ -13,7 +13,7 @@ // limitations under the License. import assert from 'node:assert' -import { test, describe, before, beforeEach } from 'node:test' +import { test, describe } from 'node:test' import { $, tmpfile, fs } from '../build/index.js' import { installDeps, @@ -48,7 +48,7 @@ describe('deps', () => { assert.match(out.stdout, /4.17.15/) }) - test('installDepsFromRegistry() loader works via CLI', async () => { + test('installDepsFromRegistry() loader works via CLI with custom npm registry URL', async () => { const code = 'import { diff } from "@jsr/std__internal";console.log(diff instanceof Function)' const file = tmpfile('index.mjs', code)