-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
81962e8
commit 970e5ee
Showing
11 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
tests/registry/npm/@denotest/cjs-non-explicit-file/1.0.0/index.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
module.exports = {}; |
5 changes: 5 additions & 0 deletions
5
tests/registry/npm/@denotest/cjs-non-explicit-file/1.0.0/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"name": "@denotest/cjs-non-explicit-file", | ||
"version": "1.0.0", | ||
"main": "index.js" | ||
} |
1 change: 1 addition & 0 deletions
1
tests/registry/npm/@denotest/cjs-non-explicit-file/1.0.0/server.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
module.exports = require("./server.node"); |
3 changes: 3 additions & 0 deletions
3
tests/registry/npm/@denotest/cjs-non-explicit-file/1.0.0/server.node.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module.exports["server"] = function () { | ||
return 1; | ||
}; |
15 changes: 15 additions & 0 deletions
15
tests/specs/npm/sub_paths_cjs_import_faillure/__test__.jsonc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"steps": [{ | ||
"args": "run --quiet sub_paths_cjs_import_faillure/main1.js", | ||
"output": "sub_paths_cjs_import_faillure/main1.out", | ||
"exitCode": 1 | ||
}, { | ||
"args": "run --quiet sub_paths_cjs_import_faillure/main2.js", | ||
"output": "sub_paths_cjs_import_faillure/main2.out", | ||
"exitCode": 1 | ||
}, { | ||
"args": "run --quiet sub_paths_cjs_import_faillure/main3.js", | ||
"output": "sub_paths_cjs_import_faillure/main3.out", | ||
"exitCode": 1 | ||
}] | ||
} |
2 changes: 2 additions & 0 deletions
2
tests/specs/npm/sub_paths_cjs_import_faillure/sub_paths_cjs_import_faillure/main1.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
import Server from "npm:@denotest/[email protected]/server"; | ||
console.log(Server); |
5 changes: 5 additions & 0 deletions
5
tests/specs/npm/sub_paths_cjs_import_faillure/sub_paths_cjs_import_faillure/main1.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
error: Unable to load [WILDCARD]server imported from [WILDCARD]main1.js | ||
Did you mean to import "npm:@denotest/[email protected]/server.js"? | ||
|
||
Caused by: | ||
[WILDCARD] |
2 changes: 2 additions & 0 deletions
2
tests/specs/npm/sub_paths_cjs_import_faillure/sub_paths_cjs_import_faillure/main2.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
import Server from "npm:@denotest/[email protected]/server.node"; | ||
console.log(Server); |
5 changes: 5 additions & 0 deletions
5
tests/specs/npm/sub_paths_cjs_import_faillure/sub_paths_cjs_import_faillure/main2.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
error: Unable to load [WILDCARD]server.node imported from [WILDCARD]main2.js | ||
Did you mean to import "npm:@denotest/[email protected]/server.node.js"? | ||
|
||
Caused by: | ||
[WILDCARD] |
3 changes: 3 additions & 0 deletions
3
tests/specs/npm/sub_paths_cjs_import_faillure/sub_paths_cjs_import_faillure/main3.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
// deno-fmt-ignore | ||
const Server = await import("npm:@denotest/[email protected]/server"); | ||
console.log(Server); |
7 changes: 7 additions & 0 deletions
7
tests/specs/npm/sub_paths_cjs_import_faillure/sub_paths_cjs_import_faillure/main3.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
error: Uncaught (in promise) TypeError: Unable to load [WILDCARD]server imported from [WILDCARD]main3.js | ||
Did you mean to import "npm:@denotest/[email protected]/server.js"? | ||
Caused by: | ||
[WILDCARD] | ||
const Server = await import("npm:@denotest/[email protected]/server"); | ||
^ | ||
at async [WILDCARD]main3.js:[WILDCARD] |