mirror of
https://github.com/denoland/deno.git
synced 2025-08-03 10:33:54 +00:00
Replace libdeno with rusty_v8 (#3556)
This commit is contained in:
parent
c41280a057
commit
5f1df038fb
50 changed files with 2292 additions and 7304 deletions
|
@ -248,9 +248,8 @@ testPerm({ env: true }, function getDir(): void {
|
|||
for (const r of s.runtime) {
|
||||
if (Deno.build.os !== r.os) continue;
|
||||
if (r.shouldHaveValue) {
|
||||
assertNotEquals(Deno.dir(s.kind), "");
|
||||
} else {
|
||||
assertEquals(Deno.dir(s.kind), null);
|
||||
const d = Deno.dir(s.kind);
|
||||
assert(d.length > 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue