Add performance smoke suite

This commit is contained in:
Davis W. Frank & Rajan Agaskar
2012-11-29 12:17:44 -08:00
parent dfed37531e
commit 34bd1969e7
3 changed files with 34 additions and 2 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);
});
}
});