add single quote check to jshint and fix src files for that

[fixes #522]
This commit is contained in:
Robin Böhm
2014-02-16 23:28:20 +01:00
committed by Greg Cobb and Sheel Choksi
parent 095b02ad83
commit 31d71ac22f
30 changed files with 384 additions and 383 deletions

View File

@@ -25,7 +25,7 @@ getJasmineRequireObj().ConsoleReporter = function() {
specCount = 0;
failureCount = 0;
pendingCount = 0;
print("Started");
print('Started');
printNewline();
timer.start();
};
@@ -37,18 +37,18 @@ getJasmineRequireObj().ConsoleReporter = function() {
}
printNewline();
var specCounts = specCount + " " + plural("spec", specCount) + ", " +
failureCount + " " + plural("failure", failureCount);
var specCounts = specCount + ' ' + plural('spec', specCount) + ', ' +
failureCount + ' ' + plural('failure', failureCount);
if (pendingCount) {
specCounts += ", " + pendingCount + " pending " + plural("spec", pendingCount);
specCounts += ', ' + pendingCount + ' pending ' + plural('spec', pendingCount);
}
print(specCounts);
printNewline();
var seconds = timer.elapsed() / 1000;
print("Finished in " + seconds + " " + plural("second", seconds));
print('Finished in ' + seconds + ' ' + plural('second', seconds));
printNewline();
@@ -58,28 +58,28 @@ getJasmineRequireObj().ConsoleReporter = function() {
this.specDone = function(result) {
specCount++;
if (result.status == "pending") {
if (result.status == 'pending') {
pendingCount++;
print(colored("yellow", "*"));
print(colored('yellow', '*'));
return;
}
if (result.status == "passed") {
print(colored("green", '.'));
if (result.status == 'passed') {
print(colored('green', '.'));
return;
}
if (result.status == "failed") {
if (result.status == 'failed') {
failureCount++;
failedSpecs.push(result);
print(colored("red", 'F'));
print(colored('red', 'F'));
}
};
return this;
function printNewline() {
print("\n");
print('\n');
}
function colored(color, str) {
@@ -87,7 +87,7 @@ getJasmineRequireObj().ConsoleReporter = function() {
}
function plural(str, count) {
return count == 1 ? str : str + "s";
return count == 1 ? str : str + 's';
}
function repeat(thing, times) {
@@ -99,12 +99,12 @@ getJasmineRequireObj().ConsoleReporter = function() {
}
function indent(str, spaces) {
var lines = (str || '').split("\n");
var lines = (str || '').split('\n');
var newArr = [];
for (var i = 0; i < lines.length; i++) {
newArr.push(repeat(" ", spaces).join("") + lines[i]);
newArr.push(repeat(' ', spaces).join('') + lines[i]);
}
return newArr.join("\n");
return newArr.join('\n');
}
function specFailureDetails(result) {