1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-08-15 07:22:16 +03:00

Appease linters.

This commit is contained in:
Kegan Dougal
2015-06-08 10:32:20 +01:00
parent fd8a754ef7
commit 8d8efd037b
2 changed files with 10 additions and 5 deletions

View File

@@ -1,7 +1,12 @@
"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("="));
};
};