summaryrefslogtreecommitdiffstats
path: root/dom/quota/test/modules/content/Assert.mjs
blob: c9b8a11d1ae8752c7abcb3a9f05519b157305e72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/
 */

// This file expectes the simpletest environment to be available in the scope
// it is loaded into.
/* eslint-env mozilla/simpletest */

// Just a wrapper around SimpleTest related functions for now.
export const Assert = {
  ok,
  equal: is,
};