mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
e12d5521bf
Original: 264a51c093
46 lines
1.4 KiB
TypeScript
46 lines
1.4 KiB
TypeScript
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
import { test } from "../testing/mod.ts";
|
|
import { assertEquals } from "../testing/asserts.ts";
|
|
import { exists, existsSync } from "./exists.ts";
|
|
import * as path from "./path/mod.ts";
|
|
|
|
const testdataDir = path.resolve("fs", "testdata");
|
|
|
|
test(async function existsFile() {
|
|
assertEquals(
|
|
await exists(path.join(testdataDir, "not_exist_file.ts")),
|
|
false
|
|
);
|
|
assertEquals(await existsSync(path.join(testdataDir, "0.ts")), true);
|
|
});
|
|
|
|
test(function existsFileSync() {
|
|
assertEquals(existsSync(path.join(testdataDir, "not_exist_file.ts")), false);
|
|
assertEquals(existsSync(path.join(testdataDir, "0.ts")), true);
|
|
});
|
|
|
|
test(async function existsDirectory() {
|
|
assertEquals(
|
|
await exists(path.join(testdataDir, "not_exist_directory")),
|
|
false
|
|
);
|
|
assertEquals(existsSync(testdataDir), true);
|
|
});
|
|
|
|
test(function existsDirectorySync() {
|
|
assertEquals(
|
|
existsSync(path.join(testdataDir, "not_exist_directory")),
|
|
false
|
|
);
|
|
assertEquals(existsSync(testdataDir), true);
|
|
});
|
|
|
|
test(function existsLinkSync() {
|
|
// TODO(axetroy): generate link file use Deno api instead of set a link file in repository
|
|
assertEquals(existsSync(path.join(testdataDir, "0-link.ts")), true);
|
|
});
|
|
|
|
test(async function existsLink() {
|
|
// TODO(axetroy): generate link file use Deno api instead of set a link file in repository
|
|
assertEquals(await exists(path.join(testdataDir, "0-link.ts")), true);
|
|
});
|