mirror of
https://github.com/denoland/deno.git
synced 2025-02-24 22:21:54 -05:00
Remove ctime from fstat test
This commit is contained in:
parent
6ee7cf46f4
commit
a734201808
1 changed files with 0 additions and 2 deletions
|
@ -21,7 +21,6 @@ Deno.test({ permissions: { read: true } }, function fstatSyncSuccess() {
|
||||||
assert(fileInfo.mtime);
|
assert(fileInfo.mtime);
|
||||||
// The `birthtime` field is not available on Linux before kernel version 4.11.
|
// The `birthtime` field is not available on Linux before kernel version 4.11.
|
||||||
assert(fileInfo.birthtime || Deno.build.os === "linux");
|
assert(fileInfo.birthtime || Deno.build.os === "linux");
|
||||||
assert(fileInfo.ctime);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
Deno.test({ permissions: { read: true } }, async function fstatSuccess() {
|
Deno.test({ permissions: { read: true } }, async function fstatSuccess() {
|
||||||
|
@ -35,7 +34,6 @@ Deno.test({ permissions: { read: true } }, async function fstatSuccess() {
|
||||||
assert(fileInfo.mtime);
|
assert(fileInfo.mtime);
|
||||||
// The `birthtime` field is not available on Linux before kernel version 4.11.
|
// The `birthtime` field is not available on Linux before kernel version 4.11.
|
||||||
assert(fileInfo.birthtime || Deno.build.os === "linux");
|
assert(fileInfo.birthtime || Deno.build.os === "linux");
|
||||||
assert(fileInfo.ctime);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
Deno.test(
|
Deno.test(
|
||||||
|
|
Loading…
Add table
Reference in a new issue