mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-12 20:30:18 +00:00
13 lines
270 B
JavaScript
13 lines
270 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
"use strict";
|
|
|
|
function run_test() {
|
|
let uuid = CommonUtils.generateUUID();
|
|
do_check_eq(uuid.length, 36);
|
|
do_check_eq(uuid[8], "-");
|
|
|
|
run_next_test();
|
|
}
|