Skip to content

Commit

Permalink
Fix ts linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanluker committed Jul 1, 2018
1 parent 7fbcea9 commit 67db157
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/lcovparser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class LcovParser {
});
return resolve(sections);
});
} catch(error) {
} catch (error) {
return reject(error);
}

Expand Down
2 changes: 1 addition & 1 deletion src/renderer.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {extname} from "path";
import {Section} from "lcov-parse";
import {extname} from "path";
import {
commands,
OutputChannel,
Expand Down
2 changes: 1 addition & 1 deletion test/renderer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ suite("Renderer Tests", function() {

const fakeReporter = {
sendEvent: () => {},
}
};

test("Constructor should setup properly @unit", function(done) {
assert.doesNotThrow(() => new Renderer(fakeConfig, fakeOutput, fakeReporter as any));
Expand Down

0 comments on commit 67db157

Please sign in to comment.