Remove now unused updateInterval that was being set in specs

This commit is contained in:
Sheel Choksi
2013-10-20 17:12:40 -07:00
parent fdb7df812c
commit b6eb9a4d5e
6 changed files with 0 additions and 6 deletions

View File

@@ -5,7 +5,6 @@
// //
// beforeEach(function() { // beforeEach(function() {
// env = new jasmine.Env(); // env = new jasmine.Env();
// env.updateInterval = 0;
// }); // });
// //
// it("should be easy to add more matchers local to a spec, suite, etc.", function() { // it("should be easy to add more matchers local to a spec, suite, etc.", function() {

View File

@@ -3,7 +3,6 @@ describe("Env", function() {
var env; var env;
beforeEach(function() { beforeEach(function() {
env = new j$.Env(); env = new j$.Env();
env.updateInterval = 0;
}); });
describe('ids', function() { describe('ids', function() {

View File

@@ -3,7 +3,6 @@ describe('Exceptions:', function() {
beforeEach(function() { beforeEach(function() {
env = new j$.Env(); env = new j$.Env();
env.updateInterval = 0;
}); });
describe('with break on exception', function() { describe('with break on exception', function() {

View File

@@ -6,7 +6,6 @@ xdescribe('JsApiReporter (integration specs)', function() {
beforeEach(function() { beforeEach(function() {
env = new j$.Env(); env = new j$.Env();
env.updateInterval = 0;
suite = env.describe("top-level suite", function() { suite = env.describe("top-level suite", function() {
spec1 = env.it("spec 1", function() { spec1 = env.it("spec 1", function() {

View File

@@ -5,7 +5,6 @@ describe("jasmine spec running", function () {
beforeEach(function() { beforeEach(function() {
env = new j$.Env(); env = new j$.Env();
env.updateInterval = 0;
}); });
it('should assign spec ids sequentially', function() { it('should assign spec ids sequentially', function() {

View File

@@ -3,7 +3,6 @@ describe("MatchersSpec - HTML Dependent", function () {
beforeEach(function() { beforeEach(function() {
env = new j$.Env(); env = new j$.Env();
env.updateInterval = 0;
var suite = env.describe("suite", function() { var suite = env.describe("suite", function() {
spec = env.it("spec", function() { spec = env.it("spec", function() {