Spelling: Fix spelling errors

* equal
* existence
* expectation
* expected
* intend
* message
* report
* singular
This commit is contained in:
Josh Soref
2013-10-30 15:14:11 -04:00
parent a2debf60b6
commit c7e3ca6c8a
7 changed files with 13 additions and 13 deletions

View File

@@ -33,13 +33,13 @@ describe("Env", function() {
});
describe("#spyOn", function() {
it("checks for the existance of the object", function() {
it("checks for the existence of the object", function() {
expect(function() {
env.spyOn(void 0, 'pants');
}).toThrowError(/could not find an object/);
});
it("checks for the existance of the method", function() {
it("checks for the existence of the method", function() {
var subject = {};
expect(function() {
@@ -460,7 +460,7 @@ describe("Env integration", function() {
it("Custom equality testers should be per spec", function(done) {
var env = new j$.Env({global: { setTimeout: setTimeout }}),
reporter = jasmine.createSpyObj('fakeReproter', [
reporter = jasmine.createSpyObj('fakeReporter', [
"jasmineStarted",
"jasmineDone",
"suiteStarted",
@@ -500,7 +500,7 @@ describe("Env integration", function() {
matchers = {
toFoo: function() {}
},
reporter = jasmine.createSpyObj('fakeReproter', [
reporter = jasmine.createSpyObj('fakeReporter', [
"jasmineStarted",
"jasmineDone",
"suiteStarted",
@@ -527,7 +527,7 @@ describe("Env integration", function() {
it("Custom equality testers for toContain should be per spec", function(done) {
var env = new j$.Env({global: { setTimeout: setTimeout }}),
reporter = jasmine.createSpyObj('fakeReproter', [
reporter = jasmine.createSpyObj('fakeReporter', [
"jasmineStarted",
"jasmineDone",
"suiteStarted",