mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
18 lines
539 B
TypeScript
18 lines
539 B
TypeScript
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
import { assert } from "../testing/asserts.ts";
|
|
import * as path from "../path/mod.ts";
|
|
import { tempFile } from "./util.ts";
|
|
|
|
Deno.test({
|
|
name: "[io/util] tempfile",
|
|
fn: async function (): Promise<void> {
|
|
const f = await tempFile(".", {
|
|
prefix: "prefix-",
|
|
postfix: "-postfix",
|
|
});
|
|
const base = path.basename(f.filepath);
|
|
assert(!!base.match(/^prefix-.+?-postfix$/));
|
|
f.file.close();
|
|
await Deno.remove(f.filepath);
|
|
},
|
|
});
|