mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 08:32:56 +00:00
14 lines
347 B
JavaScript
14 lines
347 B
JavaScript
/**
|
|
* @fileoverview JSON reporter
|
|
* @author Burak Yigit Kaya aka BYK
|
|
*/
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Public Interface
|
|
//------------------------------------------------------------------------------
|
|
|
|
module.exports = function (results) {
|
|
return JSON.stringify(results);
|
|
};
|