"use strict"; /** * Perform common actions before each test case, e.g. printing the test case * name to stdout. * @param {TestCase} testCase The test case that is about to be run. */ module.exports.beforeEach = function(testCase) { var desc = testCase.suite.description + " : " + testCase.description; console.log(desc); console.log(new Array(1 + desc.length).join("=")); };