We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5cd9e2 commit 9b6edb3Copy full SHA for 9b6edb3
test/unit/utils.test.js
@@ -117,12 +117,12 @@ describe('utils', function() {
117
this.clock.tick(250);
118
});
119
120
- it("should immediately schedule if the clock is unreliable", function (done) {
+ it('should immediately schedule if the clock is unreliable', function(done) {
121
let clockCalled = 0;
122
let lastTime = now();
123
const marks = [];
124
const executor = makeInterruptableAsyncInterval(
125
- (callback) => {
+ callback => {
126
marks.push(now() - lastTime);
127
lastTime = now();
128
callback();
@@ -141,7 +141,7 @@ describe('utils', function() {
141
}
142
143
return now();
144
- },
+ }
145
146
);
147
0 commit comments