1 /* -*- Mode: js; js-indent-level: 2; -*- */
3 * Copyright 2011 Mozilla Foundation and contributors
4 * Licensed under the New BSD license. See LICENSE or:
5 * http://opensource.org/licenses/BSD-3-Clause
7 function runSourceMapTests(modName, do_throw) {
8 let mod = require(modName);
9 let assert = require('test/source-map/assert');
10 let util = require('test/source-map/util');
12 assert.init(do_throw);
15 if (/^test/.test(k)) {
21 this.runSourceMapTests = runSourceMapTests;