Merge the node performance suite into the node suite

The node performance suite can be run with node: `node
spec/node_suite.js --perf`
This commit is contained in:
Davis W. Frank and Sheel Choksi
2013-07-02 14:03:42 -07:00
parent dcf7a0867e
commit 264b1fea50
4 changed files with 19 additions and 188 deletions

View File

@@ -0,0 +1,10 @@
describe("performance", function() {
for (var i = 0; i < 10000; i++) {
it("should pass", function() {
expect(true).toBe(true);
});
it("should fail", function() {
expect(true).toBe(false);
});
}
});