Skip to content
This repository was archived by the owner on Oct 10, 2017. It is now read-only.

Commit

Permalink
use strict in specs. still some failing specs
Browse files Browse the repository at this point in the history
  • Loading branch information
Derick Bailey committed Sep 20, 2012
1 parent 3aa00c6 commit 7f7745a
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions spec/javascripts/contacts.spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
describe("contacts", function(){
"use strict";

mockContactsAjax();

Expand Down
1 change: 1 addition & 0 deletions spec/javascripts/inbox.spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
describe("inbox", function(){
"use strict";

var showMailItemHandler, showMailListHandler, getInboxHandler;

Expand Down
1 change: 1 addition & 0 deletions spec/javascripts/layout.spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
describe("application layout", function(){
"use strict";

describe("when the application starts", function(){
var appLayout, controller;
Expand Down
1 change: 1 addition & 0 deletions spec/javascripts/mail.spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
describe("mail", function(){
"use strict";

mockMailAjax();

Expand Down
1 change: 1 addition & 0 deletions spec/javascripts/mailAppStart.spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
describe("mail app start", function(){
"use strict";

describe("when starting the mail app with an empty route (#)", function(){
var inbox, handler, getInboxHandler;
Expand Down
2 changes: 2 additions & 0 deletions spec/javascripts/mailCategories.spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
describe("mail categories", function(){
"use strict";

var categories;

mockCategoriesAjax();
Expand Down
1 change: 1 addition & 0 deletions spec/javascripts/mailbox.spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
describe("mailbox", function(){
"use strict";

describe("when showing an email collection", function(){
var mailbox, email;
Expand Down
1 change: 1 addition & 0 deletions spec/javascripts/switchingApps.spec.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
describe("switching apps", function(){
"use strict";

var mailApp, contactsApp;

beforeEach(function(){
Expand Down

0 comments on commit 7f7745a

Please sign in to comment.