Replace libdeno with rusty_v8 (#3556)

This commit is contained in:
Ry Dahl 2020-01-05 09:19:29 -05:00 committed by GitHub
parent c41280a057
commit 5f1df038fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
50 changed files with 2292 additions and 7304 deletions

View file

@ -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);
}
}
}