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

Commit e8bd0cf

Browse files
Enable checking test linting/formatting errors (#322)
1 parent 40365fb commit e8bd0cf

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

gulpfile.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,6 @@ gulp.task('watch', () => {
155155
return gulp.watch(sources, ['test.compile']);
156156
});
157157

158-
// TODO: Enable linting and checking format after the conversion to
159-
// Typescript is complete.
160-
gulp.task('test', ['test.run']);//, 'test.check-format', 'test.check-lint']);
161-
gulp.task('test.coverage', ['test.coverage.run']);//, 'test.check-format', 'test.check-lint']);
158+
gulp.task('test', ['test.run', 'test.check-format', 'test.check-lint']);
159+
gulp.task('test.coverage', ['test.coverage.run', 'test.check-format', 'test.check-lint']);
162160
gulp.task('default', ['compile', 'test.unit.compile', 'test.system.compile']);

src/debuggee.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export class Debuggee {
8484

8585
// TODO: Determine if `statusMessage` should be optional or be required
8686
// and be explicitly set to `null`.
87-
properties = properties || { statusMessage: null };
87+
properties = properties || {statusMessage: null};
8888

8989
if (!_.isString(properties.project)) {
9090
throw new Error('properties.project must be a string');

0 commit comments

Comments
 (0)