Fixing missing semi-colons
This commit is contained in:
@@ -121,7 +121,7 @@ describe("Custom Matchers (Integration)", function() {
|
||||
|
||||
var specExpectations = function(result) {
|
||||
expect(result.status).toEqual('passed');
|
||||
}
|
||||
};
|
||||
|
||||
env.addReporter({ specDone: specExpectations, jasmineDone: done });
|
||||
env.execute();
|
||||
|
||||
@@ -892,7 +892,7 @@ describe("Env integration", function() {
|
||||
};
|
||||
|
||||
env.describe('test suite', function() {
|
||||
env.beforeAll(function() { env.spyOn(testObj, 'foo');})
|
||||
env.beforeAll(function() { env.spyOn(testObj, 'foo');});
|
||||
|
||||
env.it('spec 0', function() {
|
||||
expect(jasmineUnderTest.isSpy(testObj.foo)).toBe(true);
|
||||
|
||||
Reference in New Issue
Block a user