Skip to content

Commit 1abe8b1

Browse files
committed
test: allow npm identifiers in tap:deno
1 parent f8c39fc commit 1abe8b1

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

tap/.deno.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
echo "Using $(deno --version | head -1)"
66

7-
deno run --allow-read --allow-net --allow-env --import-map tap/import_map.json --no-npm tap/run-deno.ts
7+
deno run --allow-read --allow-net --allow-env --import-map tap/import_map.json tap/run-deno.ts

tap/import_map.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
{
22
"imports": {
3-
"oauth4webapi": "../node_modules/oauth4webapi/build/index.js",
4-
"jose": "../node_modules/jose/dist/webapi/index.js",
5-
"jose/errors": "../node_modules/jose/dist/webapi/util/errors.js",
6-
"qunit": "../node_modules/qunit/qunit/qunit.js",
73
"../src/index.js": "../src/index.ts",
84
"./end2end-client-credentials.js": "./end2end-client-credentials.ts",
95
"./end2end-device-code.js": "./end2end-device-code.ts",

tap/run-deno.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import 'qunit'
1+
import QUnit from 'qunit'
22
import run from './run.js'
33

44
run(QUnit, (stats) => {

0 commit comments

Comments
 (0)