mirror of
https://github.com/zulip/zulip.git
synced 2025-11-06 06:53:25 +00:00
We still need to write to these globals with set_global because the code being tested reads from them, but the tests themselves should never need to read from them. Signed-off-by: Anders Kaseorg <anders@zulip.com>
31 lines
662 B
JavaScript
31 lines
662 B
JavaScript
"use strict";
|
|
|
|
const namespace = require("./namespace");
|
|
|
|
let current_file_name;
|
|
let verbose = false;
|
|
|
|
exports.set_current_file_name = (value) => {
|
|
current_file_name = value;
|
|
};
|
|
|
|
exports.set_verbose = (value) => {
|
|
verbose = value;
|
|
};
|
|
|
|
exports.run_test = (label, f) => {
|
|
if (verbose) {
|
|
console.info(" test: " + label);
|
|
}
|
|
try {
|
|
namespace.with_overrides(f);
|
|
} catch (error) {
|
|
console.info("-".repeat(50));
|
|
console.info(`test failed: ${current_file_name} > ${label}`);
|
|
console.info();
|
|
throw error;
|
|
}
|
|
// defensively reset blueslip after each test.
|
|
window.blueslip.reset();
|
|
};
|