mirror of
https://github.com/denoland/deno.git
synced 2025-12-23 08:48:24 +00:00
Update the sourcemap_nonexistent_source test expectation to reflect that source file existence is only checked for npm packages (for performance). Add sourcemap_npm_nonexistent_source test to cover the npm package case where source maps reference non-existent files and should fall back to showing the bundle file path in stack traces.
14 lines
289 B
JSON
14 lines
289 B
JSON
{
|
|
"tests": {
|
|
"node_modules": {
|
|
"args": "run --allow-read node_modules.ts",
|
|
"output": "node_modules.out",
|
|
"exitCode": 1
|
|
},
|
|
"not_node_modules": {
|
|
"args": "run not_node_modules.js",
|
|
"output": "not_node_modules.out",
|
|
"exitCode": 1
|
|
}
|
|
}
|
|
}
|