mirror of
https://github.com/zulip/zulip.git
synced 2025-11-10 08:56:10 +00:00
ES and TypeScript modules are strict by default and don’t need this directive. ESLint will remind us to add it to new CommonJS files and remove it from ES and TypeScript modules. Signed-off-by: Anders Kaseorg <anders@zulip.com>
59 lines
1.8 KiB
JavaScript
59 lines
1.8 KiB
JavaScript
"use strict";
|
|
|
|
const blueslip_stacktrace = zrequire("blueslip_stacktrace");
|
|
|
|
run_test("clean_path", () => {
|
|
// Local file
|
|
assert.strictEqual(
|
|
blueslip_stacktrace.clean_path("webpack:///static/js/upload.js"),
|
|
"/static/js/upload.js",
|
|
);
|
|
|
|
// Third party library (jQuery)
|
|
assert.strictEqual(
|
|
blueslip_stacktrace.clean_path(
|
|
"webpack:///.-npm-cache/de76fb6f582a29b053274f9048b6158091351048/node_modules/jquery/dist/jquery.js",
|
|
),
|
|
"jquery/dist/jquery.js",
|
|
);
|
|
|
|
// Third party library (underscore)
|
|
assert.strictEqual(
|
|
blueslip_stacktrace.clean_path(
|
|
"webpack:///.-npm-cache/de76fb6f582a29b053274f9048b…58091351048/node_modules/underscore/underscore.js",
|
|
),
|
|
"underscore/underscore.js",
|
|
);
|
|
});
|
|
|
|
run_test("clean_function_name", () => {
|
|
assert.deepEqual(blueslip_stacktrace.clean_function_name(undefined), undefined);
|
|
|
|
// Local file
|
|
assert.deepEqual(
|
|
blueslip_stacktrace.clean_function_name("Object../static/js/upload.js.exports.options"),
|
|
{
|
|
scope: "Object../static/js/upload.js.exports.",
|
|
name: "options",
|
|
},
|
|
);
|
|
|
|
// Third party library (jQuery)
|
|
assert.deepEqual(blueslip_stacktrace.clean_function_name("mightThrow"), {
|
|
scope: "",
|
|
name: "mightThrow",
|
|
});
|
|
|
|
// Third party library (underscore)
|
|
assert.deepEqual(
|
|
blueslip_stacktrace.clean_function_name(
|
|
"Function.../zulip-npm-cache/de76fb6f582a29b053274f…es/underscore/underscore.js?3817._.each._.forEach",
|
|
),
|
|
{
|
|
scope:
|
|
"Function.../zulip-npm-cache/de76fb6f582a29b053274f…es/underscore/underscore.js?3817._.each._.",
|
|
name: "forEach",
|
|
},
|
|
);
|
|
});
|