1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 05:42:25 -05:00

chore: reenable some tests disabled during Deno 1->2 migration (#26898)

This commit is contained in:
Bartek Iwańczuk 2024-11-16 18:15:42 +00:00 committed by GitHub
parent f2cd5655c6
commit 56df61677e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 39 additions and 27 deletions

View file

@ -23,18 +23,24 @@
}]
},
"exports_sub_path_not_exists": {
// TODO(2.0): this test appears legitimately broken
"ignore": true,
"args": "run b/exports-sub-path-not-exists.ts",
"output": "b/exports-sub-path-not-exists.out",
"exitCode": 1
"steps": [{
"args": "install",
"output": "[WILDCARD]"
}, {
"args": "run b/exports-sub-path-not-exists.ts",
"output": "b/exports-sub-path-not-exists.out",
"exitCode": 1
}]
},
"no_exports_sub_path_not_exists": {
// TODO(2.0): this test appears legitimately broken
"ignore": true,
"args": "run b/no-exports-sub-path-not-exists.ts",
"output": "b/no-exports-sub-path-not-exists.out",
"exitCode": 1
"steps": [{
"args": "install",
"output": "[WILDCARD]"
}, {
"args": "run b/no-exports-sub-path-not-exists.ts",
"output": "b/no-exports-sub-path-not-exists.out",
"exitCode": 1
}]
}
}
}

View file

@ -1,3 +1,3 @@
[# not the best error, but it did resolve because there was no exports specified]
error: Module not found "file:///[WILDLINE]/c/non-existent".
error: [ERR_MODULE_NOT_FOUND] Cannot find module 'file:///[WILDLINE]/c/non-existent' imported from 'file:///[WILDLINE]/b/no-exports-sub-path-not-exists.ts'
at file:///[WILDLINE]/b/no-exports-sub-path-not-exists.ts:1:20

View file

@ -2,15 +2,11 @@
"tempDir": true,
"tests": {
"member": {
// TODO(2.0): this test appears legitimately broken
"ignore": true,
"args": "run --allow-read member/main.ts",
"args": "run --allow-read --node-modules-dir=auto member/main.ts",
"output": "member.out"
},
"member_with_deno_json": {
// TODO(2.0): this test appears legitimately broken
"ignore": true,
"args": "run --allow-read member_with_deno_json/main.ts",
"args": "run --allow-read --node-modules-dir=auto member_with_deno_json/main.ts",
"output": "member.out"
},
"non_member": {

View file

@ -1,4 +1,4 @@
{
// will cause a warning
"nodeModules": "local-auto"
"nodeModulesDir": "auto"
}

View file

@ -1,17 +1,24 @@
{
// TODO(2.0): these tests are actually broken now, some code needs
// to be updated to make them work
"ignore": true,
"tests": {
"dep_and_workspace_dep": {
"args": "publish --dry-run --no-check --log-level=debug",
"cwd": "subtract",
"output": "publish-subtract.out"
"steps": [{
"args": "install",
"output": "[WILDCARD]"
}, {
"args": "publish --dry-run --no-check --log-level=debug",
"cwd": "subtract",
"output": "publish-subtract.out"
}]
},
"bare_specifier": {
"args": "publish --dry-run --no-check --log-level=debug",
"cwd": "subtract-2",
"output": "publish-subtract2.out"
"steps": [{
"args": "install",
"output": "[WILDCARD]"
}, {
"args": "publish --dry-run --no-check --log-level=debug",
"cwd": "subtract-2",
"output": "publish-subtract2.out"
}]
}
}
}

View file

@ -0,0 +1 @@
1

View file

@ -0,0 +1 @@
../add

View file

@ -0,0 +1 @@
../add