Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit f3b8885

Browse files
committed
chore: fix formatting
1 parent 96cb3d0 commit f3b8885

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

Diff for: lib/jasmine/jasmine.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,10 @@
9090
// Note we have to make a function with correct number of arguments, otherwise jasmine will
9191
// think that all functions are sync or async.
9292
return testBody && (testBody.length ? function(done) {
93-
return testProxyZone.run(testBody, this, [done]);
94-
} : function() {
95-
return testProxyZone.run(testBody, this);
96-
});
93+
return testProxyZone.run(testBody, this, [done]);
94+
} : function() {
95+
return testProxyZone.run(testBody, this);
96+
});
9797
}
9898
interface QueueRunner {
9999
execute(): void;

Diff for: test/jasmine-patch.spec.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import {ifEnvSupports} from './test-util';
21
/**
32
* @license
43
* Copyright Google Inc. All Rights Reserved.
@@ -7,6 +6,8 @@ import {ifEnvSupports} from './test-util';
76
* found in the LICENSE file at https://angular.io/license
87
*/
98

9+
import {ifEnvSupports} from './test-util';
10+
1011
ifEnvSupports(() => jasmine && jasmine['Spec'], () => {
1112
beforeEach(() => {
1213
// assert that each jasmine run has a task, so that drainMicrotask works properly.

0 commit comments

Comments
 (0)