From cf0579c7d4b69fcb205fb0d5320e0a00012720ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Fri, 3 May 2024 01:00:38 +0100 Subject: test: npm registry handles two test scopes (#23663) This commit updates our testing npm registry to handle additional `@denotest2` scope in addition to `@denotest` scope. I might have to update it further in the future to handle additional scopes, but it's good enough for now. --- tests/testdata/npm/registry/@denotest2/basic/1.0.0/package.json | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tests/testdata/npm/registry/@denotest2/basic/1.0.0/package.json (limited to 'tests/testdata/npm/registry/@denotest2/basic/1.0.0/package.json') diff --git a/tests/testdata/npm/registry/@denotest2/basic/1.0.0/package.json b/tests/testdata/npm/registry/@denotest2/basic/1.0.0/package.json new file mode 100644 index 000000000..d7129c348 --- /dev/null +++ b/tests/testdata/npm/registry/@denotest2/basic/1.0.0/package.json @@ -0,0 +1,7 @@ +{ + "name": "@denotest2/basic", + "version": "1.0.0", + "type": "module", + "main": "main.mjs", + "types": "main.d.mts" +} -- cgit v1.2.3