7 lines
218 B
JavaScript
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("="));
|
|
}; |