Skip to main content
Module

x/is_wsl/mod_test.ts

Check if the process is running inside a WSL enviroment in Deno
Latest
File
import { assertEquals } from "https://deno.land/std/testing/asserts.ts";import { isWsl } from "./mod.ts";
Deno.test("test starter function", async (): Promise<void> => { assertEquals(await isWsl(), false);});