This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"success": false, | |
"errors": { | |
"specification": { | |
"date_start": [ | |
"The test needs a start date" | |
], | |
"duration": [ | |
"Duration cannot be blank" | |
], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var __extends = (this && this.__extends) || function (d, b) { | |
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; | |
function __() { this.constructor = d; } | |
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | |
}; | |
var AbstractLogger_1 = require('./AbstractLogger'); | |
var ConsoleLogger = (function (_super) { | |
__extends(ConsoleLogger, _super); | |
function ConsoleLogger() { | |
_super.call(this); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"rules": { | |
"class-name": true, | |
"curly": false, | |
"eofline": true, | |
"indent": "spaces", | |
"max-line-length": [true, 140], | |
"member-ordering": [true, | |
"public-before-private", | |
"static-before-instance", |