Module

x/deno_machine_id/test.ts

Unique machine (desktop) id (no admin privileges required)
Latest
File
import { assertNotEquals } from "https://deno.land/std@0.145.0/testing/asserts.ts";import machineId from "./mod.ts";
const { test } = Deno;
test({ name: "machineId", fn: async () => { const id = await machineId(); assertNotEquals(id, ""); },});