summaryrefslogtreecommitdiffstats
path: root/devtools/shared/storage/vendor/stringvalidator/tests/xpcshell/head_stringvalidator.js
blob: f1e25fe2ec7e3c1b9df49d496cef688a3c5e810c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"use strict";

const { require } = ChromeUtils.importESModule("resource://devtools/shared/loader/Loader.sys.mjs");

this.validator = require("resource://devtools/shared/storage/vendor/stringvalidator/validator.js");

function describe(suite, testFunc) {
  info(`\n                            Test suite: ${suite}`.toUpperCase());
  testFunc();
}

function it(description, testFunc) {
  info(`\n                              - ${description}:\n`.toUpperCase());
  testFunc();
}