Assert.mjs (360B)
1 /** 2 * Any copyright is dedicated to the Public Domain. 3 * http://creativecommons.org/publicdomain/zero/1.0/ 4 */ 5 6 // This file expectes the simpletest environment to be available in the scope 7 // it is loaded into. 8 /* eslint-env mozilla/simpletest */ 9 10 // Just a wrapper around SimpleTest related functions for now. 11 export const Assert = { 12 ok, 13 equal: is, 14 };