Skip to content

Commit

Permalink
Add new lines to ends of all files
Browse files Browse the repository at this point in the history
This conforms to the Dojo 2 core style guide and makes it easier
for users with POSIX-conforming text editors to submit code
without whitespace changes.
  • Loading branch information
csnover committed Jul 25, 2013
1 parent 6888db3 commit 3063048
Show file tree
Hide file tree
Showing 40 changed files with 40 additions and 40 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
node_modules
sauce_connect.log*
lcov.info
lcov.info
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Released under [Dojo Foundation CLA](http://dojofoundation.org/about/cla).
Released under [Dojo Foundation CLA](http://dojofoundation.org/about/cla).
2 changes: 1 addition & 1 deletion chai.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ define([ 'chai' ], function (chai) {
callback(chai[id]);
}
};
});
});
2 changes: 1 addition & 1 deletion client.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@
})();
</script>
</head>
</html>
</html>
2 changes: 1 addition & 1 deletion client.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,4 +129,4 @@ else {
});
});
});
}
}
2 changes: 1 addition & 1 deletion lib/ClientSuite.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@ define([
});

return ClientSuite;
});
});
2 changes: 1 addition & 1 deletion lib/EnvironmentType.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ define([], function () {
};

return EnvironmentType;
});
});
2 changes: 1 addition & 1 deletion lib/Suite.js
Original file line number Diff line number Diff line change
Expand Up @@ -246,4 +246,4 @@ define([
};

return Suite;
});
});
2 changes: 1 addition & 1 deletion lib/Test.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,4 +198,4 @@ define([
};

return Test;
});
});
2 changes: 1 addition & 1 deletion lib/args.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ define([], function () {
});

return args;
});
});
2 changes: 1 addition & 1 deletion lib/createProxy.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,4 +139,4 @@ define([
console.log('Listening on 0.0.0.0:' + config.port);
return server;
};
});
});
2 changes: 1 addition & 1 deletion lib/interfaces/bdd.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ define([
suite: { value: undefined },
test: { value: undefined }
});
});
});
2 changes: 1 addition & 1 deletion lib/interfaces/tdd.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ define([
aspect.after(currentSuite, 'afterEach', fn);
}
};
});
});
2 changes: 1 addition & 1 deletion lib/reporterManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,4 +96,4 @@ define([
reporter.isRunning = false;
}
};
});
});
2 changes: 1 addition & 1 deletion lib/reporters/console.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ define([
util.logError(test.error);
}
};
});
});
2 changes: 1 addition & 1 deletion lib/reporters/lcov.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ define([
reporter.writeReport(collector, true);
}
};
});
});
2 changes: 1 addition & 1 deletion lib/reporters/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,4 @@ define([
console.log(message, numEnvironments, numFailedTests, numTests);
}
};
});
});
2 changes: 1 addition & 1 deletion lib/reporters/webdriver.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,4 +116,4 @@ define([
scroll();
} : null
};
});
});
2 changes: 1 addition & 1 deletion lib/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,4 +139,4 @@ define([
}
}
};
});
});
2 changes: 1 addition & 1 deletion lib/wd.js
Original file line number Diff line number Diff line change
Expand Up @@ -859,4 +859,4 @@ define([
return new PromisedWebDriver(config, desiredEnvironment);
}
};
});
});
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ define([
require([ './lib/interfaces/' + id ], callback);
}
};
});
});
2 changes: 1 addition & 1 deletion order.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ define([
})();
}
};
});
});
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@
"bugs": "https://github.com/theintern/intern/issues",
"keywords": [ "javascript", "test", "unit", "testing", "ci", "continuous integration", "bdd", "tdd", "xunit", "istanbul", "chai", "dojo", "toolkit", "selenium", "sauce labs", "code coverage" ],
"homepage": "http://theintern.io/"
}
}
2 changes: 1 addition & 1 deletion tasks/intern.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ module.exports = function (grunt) {
grunt.log[/\bPASS/i.test(data) ? 'ok' : /\bFAIL/i.test(data) ? 'error' : 'write'](data);
});
});
};
};
2 changes: 1 addition & 1 deletion tests/all.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ define([
'./lib/interfaces/object',
'./lib/reporters/console',
'dojo/has!host-node?./lib/reporters/lcov'
], function () {});
], function () {});
2 changes: 1 addition & 1 deletion tests/data/order/1.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
var global = (new Function('return this')());
global.order = global.order || [];
global.order.push(1);
})();
})();
2 changes: 1 addition & 1 deletion tests/data/order/2.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
var global = (new Function('return this')());
global.order = global.order || [];
global.order.push(2);
})();
})();
2 changes: 1 addition & 1 deletion tests/example.intern.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,4 @@ define({

// A regular expression matching URLs to files that should not be included in code coverage analysis
excludeInstrumentation: /^tests\//
});
});
2 changes: 1 addition & 1 deletion tests/functional/basic.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,4 @@ define([
}));
}
});
});
});
2 changes: 1 addition & 1 deletion tests/functional/data/basic.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
<h1>Functional test</h1>
<script>window.executeWorks = true;</script>
</body>
</html>
</html>
2 changes: 1 addition & 1 deletion tests/lib/Suite.js
Original file line number Diff line number Diff line change
Expand Up @@ -399,4 +399,4 @@ define([
assert.strictEqual(suite.numFailedTests, 2, 'Suite#numFailedTests returns the correct number of failed tests, including those from nested suites');
}
});
});
});
2 changes: 1 addition & 1 deletion tests/lib/Test.js
Original file line number Diff line number Diff line change
Expand Up @@ -252,4 +252,4 @@ define([
assert.strictEqual(test.remote, mockRemote, 'Test#remote should get the remote value from from the test\'s parent');
}
});
});
});
2 changes: 1 addition & 1 deletion tests/lib/interfaces/bdd.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ define([
assert.isUndefined(bdd.test, 'bdd.test should not be defined since it is a TDD interface');
}
});
});
});
2 changes: 1 addition & 1 deletion tests/lib/interfaces/object.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,4 @@ define([
}
}
});
});
});
2 changes: 1 addition & 1 deletion tests/lib/interfaces/tdd.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,4 @@ define([
});
}
});
});
});
2 changes: 1 addition & 1 deletion tests/lib/reporterManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,4 @@ define([
assert.strictEqual(numTimesStopped, 1, 'Trying to stop an already-stopped reporter should do nothing');
}
});
});
});
2 changes: 1 addition & 1 deletion tests/lib/reporters/console.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,4 +219,4 @@ define([
}
}
});
});
});
2 changes: 1 addition & 1 deletion tests/lib/reporters/lcov.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,4 @@ define([
}
}
});
});
});
2 changes: 1 addition & 1 deletion tests/order.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ define([
}));
}
});
});
});
2 changes: 1 addition & 1 deletion tests/selftest.intern.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ define({

// A regular expression matching URLs to files that should not be included in code coverage analysis
excludeInstrumentation: /^(?:tests|node_modules)\//
});
});

0 comments on commit 3063048

Please sign in to comment.