Files
matrix-js-sdk/spec/test-utils.js
T
2015-06-08 10:17:24 +01:00

7 lines
218 B
JavaScript

"use strict";
module.exports.beforeEach = function(testCase) {
var desc = testCase.suite.description + " : " + testCase.description;
console.log(desc);
console.log(new Array(1 + desc.length).join("="));
};