deno.land / std@0.224.0 / path / join_globs_test.ts
123456789// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.import { assertEquals } from "../assert/mod.ts";import { joinGlobs } from "./join_globs.ts";import { SEPARATOR } from "./mod.ts";
Deno.test("joinGlobs() checks options.globstar", function () { assertEquals(joinGlobs(["**", ".."], { globstar: true }), `**${SEPARATOR}..`);});
Version Info