Files
go-jdenticon/jdenticon-js/test/e2e/node/test.mjs
Kevin McIntyre f84b511895 init
2025-06-18 01:00:00 -04:00

12 lines
242 B
JavaScript

import tap from "tap";
import { bundle } from "jdenticon";
import * as jdenticon from "jdenticon";
import baseNode from "./base.js";
tap.test("jdenticon.bundle", t => {
t.equal(bundle, "node-esm");
t.end();
});
baseNode(jdenticon);