Sha256: 255af98da1da11dd6991e3e5a47a35227cecb19252084545683b29a93781b827

Contents?: true

Size: 1.17 KB

Versions: 479

Compression:

Stored size: 1.17 KB

Contents

/* -*- Mode: js; js-indent-level: 2; -*- */
/*
 * Copyright 2011 Mozilla Foundation and contributors
 * Licensed under the New BSD license. See LICENSE or:
 * http://opensource.org/licenses/BSD-3-Clause
 */
define('test/source-map/assert', ['exports'], function (exports) {

  let do_throw = function (msg) {
    throw new Error(msg);
  };

  exports.init = function (throw_fn) {
    do_throw = throw_fn;
  };

  exports.doesNotThrow = function (fn) {
    try {
      fn();
    }
    catch (e) {
      do_throw(e.message);
    }
  };

  exports.equal = function (actual, expected, msg) {
    msg = msg || String(actual) + ' != ' + String(expected);
    if (actual != expected) {
      do_throw(msg);
    }
  };

  exports.ok = function (val, msg) {
    msg = msg || String(val) + ' is falsey';
    if (!Boolean(val)) {
      do_throw(msg);
    }
  };

  exports.strictEqual = function (actual, expected, msg) {
    msg = msg || String(actual) + ' !== ' + String(expected);
    if (actual !== expected) {
      do_throw(msg);
    }
  };

  exports.throws = function (fn) {
    try {
      fn();
      do_throw('Expected an error to be thrown, but it wasn\'t.');
    }
    catch (e) {
    }
  };

});

Version data entries

479 entries across 234 versions & 33 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/scss-tokenizer/node_modules/source-map/build/assert-shim.js
disco_app-0.18.0 test/dummy/node_modules/scss-tokenizer/node_modules/source-map/build/assert-shim.js
disco_app-0.18.2 test/dummy/node_modules/scss-tokenizer/node_modules/source-map/build/assert-shim.js
epuber-stylus-source-0.56.0 vendor/node_modules/uglify-js/node_modules/source-map/build/assert-shim.js
epuber-stylus-source-0.54.8 vendor/node_modules/uglify-js/node_modules/source-map/build/assert-shim.js
tang-0.2.1 spec/tang_app/node_modules/scss-tokenizer/node_modules/source-map/build/assert-shim.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/scss-tokenizer/node_modules/source-map/build/assert-shim.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/scss-tokenizer/node_modules/source-map/build/assert-shim.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/scss-tokenizer/node_modules/source-map/build/assert-shim.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/scss-tokenizer/node_modules/source-map/build/assert-shim.js
tang-0.2.0 spec/tang_app/node_modules/scss-tokenizer/node_modules/source-map/build/assert-shim.js
tang-0.1.0 spec/tang_app/node_modules/scss-tokenizer/node_modules/source-map/build/assert-shim.js
tang-0.0.9 spec/tang_app/node_modules/scss-tokenizer/node_modules/source-map/build/assert-shim.js
enju_library-0.3.8 spec/dummy/node_modules/scss-tokenizer/node_modules/source-map/build/assert-shim.js
ilog-0.4.1 node_modules/scss-tokenizer/node_modules/source-map/build/assert-shim.js
ilog-0.4.1 node_modules/css-loader/node_modules/source-map/build/assert-shim.js
ilog-0.4.1 node_modules/resolve-url-loader/node_modules/source-map/build/assert-shim.js
ilog-0.4.1 node_modules/source-map-support/node_modules/source-map/build/assert-shim.js
ilog-0.4.0 node_modules/css-loader/node_modules/source-map/build/assert-shim.js
ilog-0.4.0 node_modules/resolve-url-loader/node_modules/source-map/build/assert-shim.js