Files
pjax/tests/lib/uniqueid.js
Behind The Math c13149626b Prettier fixes
2019-03-03 01:37:45 -05:00

13 lines
246 B
JavaScript

var tape = require("tape");
var uniqueid = require("../../lib/uniqueid.js");
tape("test uniqueid", function(t) {
var a = uniqueid();
var b = uniqueid();
t.notEqual(a, b, "Two calls to uniqueid produce different values");
t.end();
});