- Testing (math_test): Fix undeclared variables
- Testing: Move JavaScript out of HTML to own files - Linting: ESLint; unfinished: editor/extensions/, editor/ (root); some of test
This commit is contained in:
10
test/jquery-svg_test.js
vendored
Normal file
10
test/jquery-svg_test.js
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
/* eslint-env qunit */
|
||||
/* globals $ */
|
||||
$(function () {
|
||||
// log function
|
||||
QUnit.log = function (details) {
|
||||
if (window.console && window.console.log) {
|
||||
window.console.log(details.result + ' :: ' + details.message);
|
||||
}
|
||||
};
|
||||
});
|
||||
Reference in New Issue
Block a user